There was an error while loading. Please reload this page.
1 parent dbc66c6 commit 9ea0bc9Copy full SHA for 9ea0bc9
1 file changed
.github/workflows/scripts/pr-cron-stale-abandon.py
@@ -52,6 +52,9 @@ def main():
52
for pr in pulls:
53
total_scanned += 1
54
try:
55
+ if pr.draft:
56
+ continue
57
+
58
# pr.updated_at is already timezone-aware in PyGithub (utc)
59
updated_at = pr.updated_at
60
if updated_at.tzinfo is None:
0 commit comments