Skip to content

Commit

Permalink
SONARJAVA-5168 Add automation to mark and close stale PRs (#4920)
Browse files Browse the repository at this point in the history
  • Loading branch information
johann-beleites-sonarsource authored Nov 8, 2024
1 parent 2448da1 commit 9045188
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/mark-prs-stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: 'Close stale PRs'
on:
workflow_dispatch:
schedule:
- cron: '30 2 * * *'

jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v9
with:
stale-pr-message: 'This PR is stale because it has been open 7 days with no activity. If there is no activity in the next 7 days it will be closed automatically'
stale-pr-label: 'stale'
days-before-stale: 7
days-before-close: 7
exempt-pr-labels: 'do-not-close,External Contribution'

0 comments on commit 9045188

Please sign in to comment.