You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GH-48263: [CI] Stale issues workflow doesn't go through enough issues (#48264)
### Rationale for this change
Stale issues workflows does like 30 issues and stops as it takes API calls to see if they should be closed ot not.
### What changes are included in this PR?
Split out workflows so it filters by things already labelled and treats labelling and closing as separate tasks
### Are these changes tested?
Nope
### Are there any user-facing changes?
Nope
* GitHub Issue: #48263
Authored-by: Nic Crane <[email protected]>
Signed-off-by: Nic Crane <[email protected]>
Copy file name to clipboardExpand all lines: .github/workflows/stale.yml
+61-4Lines changed: 61 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ on:
22
22
workflow_dispatch:
23
23
24
24
jobs:
25
-
close-stale-prs:
25
+
mark-stale-prs:
26
26
runs-on: ubuntu-latest
27
27
permissions:
28
28
issues: write
@@ -33,12 +33,31 @@ jobs:
33
33
stale-pr-message: "Thank you for your contribution. Unfortunately, this pull request has been marked as stale because it has had no activity in the past 365 days. Please remove the stale label or comment below, or this PR will be closed in 14 days. Feel free to re-open this if it has been closed in error. If you do not have repository permissions to reopen the PR, please tag a maintainer."
stale-issue-message: "This issue has been marked as stale because it has had no activity in the past 365 days. Please remove the stale label or comment below, or this issue will be closed in 14 days. If this usage question has evolved into a feature request or docs update, please remove the 'Type: usage' label and add the 'Type: enhancement' label instead."
stale-issue-message: "This issue has been marked as stale because it has had no activity in the past 365 days. Please remove the stale label or comment below, or this issue will be closed in 14 days. If this improvement is still desired but has no current owner, please add the 'Status: needs champion' label."
0 commit comments