Skip to content

Commit 958a80c

Browse files
committed
fix: increase operations-per-run to 1000 and pin stale action to v10.2.0
The stale-issues workflow was hitting the default 30 operations limit, preventing it from processing all 2900+ issues/PRs. Increased to 1000 to handle the full backlog. Also pinned to exact v10.2.0 for reproducibility.
1 parent 4647aa8 commit 958a80c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/stale-issues.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,9 @@ jobs:
1515
permissions:
1616
issues: write
1717
steps:
18-
- uses: actions/stale@v10
18+
- uses: actions/stale@v10.2.0
1919
with:
20+
operations-per-run: 1000
2021
days-before-stale: ${{ env.DAYS_BEFORE_STALE }}
2122
days-before-close: ${{ env.DAYS_BEFORE_CLOSE }}
2223
stale-issue-label: "stale"

0 commit comments

Comments
 (0)