Skip to content

Commit

Permalink
Increase stalebot operations limit by 50%
Browse files Browse the repository at this point in the history
We have to increase this until either it can handle 1000 issues in a single run, or we hit the GitHub API operations limit.
  • Loading branch information
steveluscher authored Dec 20, 2022
1 parent 92c9027 commit 9a82368
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/manage-stale-issues-and-prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
exempt-issue-labels: blocked,do-not-close,feature-gate,security
exempt-pr-labels: blocked,do-not-close,feature-gate,security
# No actual changes get made in debug-only mode, so we can raise the operations ceiling.
operations-per-run: ${{ github.event_name == 'pull_request' && 100 || 30}}
operations-per-run: ${{ github.event_name == 'pull_request' && 100 || 45}}
stale-issue-label: stale
stale-issue-message: "" # Leave no comment when marking as stale
stale-pr-label: stale
Expand Down

0 comments on commit 9a82368

Please sign in to comment.