Stale issues #836
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 issues" | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
stale: | |
timeout-minutes: 1 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v5 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
stale-issue-message: 'This issue is stale because it has been labeled with inactivity.' | |
stale-pr-message: 'This PR is stale because it has been labeled with inactivity.' | |
exempt-issue-labels: 'lifecycle/frozen,lifecycle/active,priority/critical-urgent,priority/important-soon,priority/important-longterm,priority/backlog,priority/awaiting-more-evidence' | |
exempt-pr-labels: 'lifecycle/active' | |
stale-pr-label: 'lifecycle/stale' | |
stale-issue-label: 'lifecycle/stale' | |
days-before-stale: 60 | |
days-before-close: 20 |