Stale issue & PR handler #731
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Stale issue & PR handler" | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 * * *" | |
permissions: | |
issues: write | |
pull-requests: write | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e # refs/tags/v9.0.0 | |
id: stale | |
with: | |
ascending: true | |
close-issue-message: "Issue closed due to inactivity." | |
close-pr-message: "Pull request closed due to inactivity." | |
days-before-close: 14 | |
days-before-stale: 60 | |
exempt-issue-labels: "triage-pending,review-pending" | |
operations-per-run: 100 | |
stale-issue-message: "This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 14 days" | |
stale-pr-message: "This pull request is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 14 days" |