Stale Issues #115
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 Issues | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' # Daily at midnight UTC | |
| workflow_dispatch: | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/stale@v10 | |
| with: | |
| days-before-stale: 30 | |
| days-before-close: 7 | |
| stale-issue-label: stale | |
| stale-pr-label: stale | |
| stale-issue-message: > | |
| This issue has been inactive for 30 days and will be closed in 7 days | |
| unless there is new activity. | |
| stale-pr-message: > | |
| This PR has been inactive for 30 days and will be closed in 7 days | |
| unless there is new activity. | |
| exempt-issue-labels: pinned,bug,help wanted | |
| exempt-pr-labels: pinned,work in progress |