Stale #90
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 | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' | |
| workflow_dispatch: | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| stale: | |
| name: Manage Stale Items | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Mark stale issues and PRs | |
| uses: actions/stale@v9 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| stale-issue-message: 'This issue has been inactive for 30 days. It will be closed in 7 days if there is no further activity.' | |
| stale-pr-message: 'This PR has been inactive for 14 days. It will be closed in 7 days if there is no further activity.' | |
| stale-issue-label: 'stale' | |
| stale-pr-label: 'stale' | |
| days-before-issue-stale: 30 | |
| days-before-pr-stale: 14 | |
| days-before-issue-close: 7 | |
| days-before-pr-close: 7 | |
| exempt-issue-labels: 'pinned,security,bug' | |
| exempt-pr-labels: 'pinned,security' |