File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ def main():
2525
2626 print ("[VALIDATION] Would connect to Github and fetch repo:" , REPO_NAME )
2727
28- issues = repo .get_issues (state = ' open' , labels = [LABEL ])
28+ issues = repo .get_issues (state = " open" , labels = [LABEL ])
2929 print (f"[VALIDATION] Would fetch open issues with label '{ LABEL } '." )
3030
3131 now = datetime .datetime .utcnow ()
@@ -60,9 +60,7 @@ def main():
6060 last_auto = auto_comments [- 1 ]
6161 user = issue .user .login
6262 if (now - last_auto .created_at ).days >= REMINDER_COOLDOWN_DAYS :
63- print (
64- f"[VALIDATION] Would remind { user } again on issue/PR #{ issue .number } "
65- )
63+ print (f"[VALIDATION] Would remind { user } again on issue/PR #{ issue .number } " )
6664
6765 # ---- EXISTING CLOSE/REMOVE LABEL LOGIC ----
6866 if auto_comments :
@@ -81,5 +79,6 @@ def main():
8179 f"[VALIDATION] Would remove label from issue/PR #{ issue .number } after user response."
8280 )
8381
82+
8483if __name__ == "__main__" :
8584 main ()
You can’t perform that action at this time.
0 commit comments