Stale #1
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
| # Auto-manage stale issues/PRs so the backlog (and the maintainer) stays healthy. | |
| # https://opensource.guide/maintaining-balance-for-open-source-maintainers/ | |
| name: Stale | |
| on: | |
| schedule: | |
| - cron: "0 3 * * *" | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/stale@v10 | |
| with: | |
| days-before-stale: 45 | |
| days-before-close: 14 | |
| stale-issue-label: stale | |
| stale-pr-label: stale | |
| exempt-issue-labels: "help wanted,good first issue,pinned,security,accessibility" | |
| exempt-pr-labels: "pinned" | |
| stale-issue-message: "Inactive for 45 days — closing in 14 days without further activity. Comment to keep it open." | |
| stale-pr-message: "Inactive for 45 days — closing in 14 days without further activity." |