We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 440ffc8 commit cd95949Copy full SHA for cd95949
.github/workflows/pending_user_response.py
@@ -17,11 +17,11 @@
17
DAYS_BEFORE_CLOSE = 30
18
19
def main():
20
- # g = Github(os.environ['GH_TOKEN'])
21
- # repo = g.get_repo(REPO_NAME)
+ g = Github(os.environ['GH_TOKEN'])
+ repo = g.get_repo(REPO_NAME)
22
23
print("[VALIDATION] Would connect to Github and fetch repo:", REPO_NAME)
24
- # issues = repo.get_issues(state='open', labels=[LABEL])
+ issues = repo.get_issues(state='open', labels=[LABEL])
25
print(f"[VALIDATION] Would fetch open issues with label '{LABEL}'.")
26
27
now = datetime.datetime.utcnow()
0 commit comments