Skip to content

Commit

Permalink
Increase stale operations count
Browse files Browse the repository at this point in the history
- Currently uses default 30 and thats too low
- Also update to latest version of the action
- Also configure to only process PRs
  • Loading branch information
mosabua committed Jan 5, 2024
1 parent 75854f4 commit 6f9f8cf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
if: github.repository == 'trinodb/trino'
steps:
- uses: actions/stale@v8.0.0
- uses: actions/stale@v9.0.0
with:
stale-pr-message: 'This pull request has gone a while without any activity. Tagging the Trino developer relations team: @bitsondatadev @colebow @mosabua'
days-before-pr-stale: 21
Expand All @@ -21,3 +21,7 @@ jobs:
stale-pr-label: 'stale'
start-date: '2023-01-01T00:00:00Z'
exempt-draft-pr: true
operations-per-run: 200
# Avoid processing issues completely, see https://github.com/actions/stale/issues/1112
days-before-issue-stale: -1
day-before-issue-closed: -1

0 comments on commit 6f9f8cf

Please sign in to comment.