[U] Update issue moderator to allow dynamic blacklist file

This commit is contained in:
Azalea Gui 2023-05-01 14:17:41 -04:00
parent 4a16cfec9b
commit afb7092667
2 changed files with 9 additions and 3 deletions

View file

@ -1,21 +0,0 @@
import os
import time
from github import Github
if __name__ == '__main__':
gh = Github(per_page=100, login_or_token=os.environ.get('GH_TOKEN'))
repo = gh.get_repo("hykilpikonna/hyfetch")
while True:
iss = repo.get_issues(state='open')
for i in iss:
if i.user.login in ['Symbolic11']:
i.edit(title="[Redacted]", body="[Redacted by Content Moderation Bot]", state="closed")
i.create_comment("Issue closed by bot for offensive content.")
print(f"Closed {i.number}")
time.sleep(2)