Stale issue handler #1393
This file contains hidden or 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 handler' | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 0 * * *' | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| issues: write | |
| pull-requests: write | |
| steps: | |
| - uses: actions/stale@main | |
| id: stale | |
| with: | |
| ascending: true | |
| close-pr-message: 'Pull request closed due to inactivity.' | |
| days-before-stale: 14 | |
| days-before-issue-close: -1 | |
| days-before-pr-close: 7 | |
| delete-branch: true | |
| exempt-issue-labels: 'exempt-stale' | |
| exempt-pr-labels: 'exempt-stale,dependencies,ci' | |
| operations-per-run: 100 | |
| stale-issue-message: 'This issue is stale because it has been open for 2 weeks with no activity. Remove stale label or comment to keep it open.' | |
| stale-pr-message: 'This pull request is stale because it has been open for 2 weeks with no activity. Remove stale label or comment or this will be closed in 7 days' | |
| - name: Print outputs | |
| run: echo ${{ join(steps.stale.outputs.*, ',') }} |