Mark stale issues and pull requests #470
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: Mark stale issues and pull requests | |
on: | |
schedule: | |
- cron: '0 0 * * *' # Run every day at midnight UTC | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v8 | |
with: | |
# Overall configuration | |
operations-per-run: 100 | |
# PR configuration | |
days-before-pr-stale: 30 | |
stale-pr-message: 'This PR has become stale because it has been open for 30 days with no activity. Adding the `lifecycle/frozen` label will exempt this PR from future lifecycle events..' | |
days-before-pr-close: -1 | |
stale-pr-label: lifecycle/stale | |
exempt-pr-labels: lifecycle/frozen | |
# Issue configuration | |
days-before-issue-stale: 60 | |
stale-issue-message: 'This issue has become stale because it has been open 60 days with no activity. Adding the `lifecycle/frozen` label will exempt this issue from future lifecycle events.' | |
days-before-issue-close: -1 | |
stale-issue-label: lifecycle/stale | |
exempt-issue-labels: lifecycle/frozen |