stale #13
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
| # --------------------------------------------------- | |
| # Stale | |
| # --------------------------------------------------- | |
| # Marks issues and pull requests as stale after 60 | |
| # days of inactivity, then closes them after an | |
| # additional 14 days with no further activity. | |
| # --------------------------------------------------- | |
| name: stale | |
| on: | |
| schedule: | |
| # Run daily at midnight UTC | |
| - cron: "0 0 * * *" | |
| workflow_dispatch: | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/stale@v10 | |
| with: | |
| days-before-stale: 60 | |
| days-before-close: 14 | |
| stale-issue-label: "stale" | |
| stale-pr-label: "stale" | |
| stale-issue-message: > | |
| This issue has been automatically marked as stale because it has not | |
| had recent activity. It will be closed in 14 days if no further | |
| activity occurs. | |
| stale-pr-message: > | |
| This pull request has been automatically marked as stale because it | |
| has not had recent activity. It will be closed in 14 days if no | |
| further activity occurs. | |
| exempt-issue-labels: "status:accepted,status:in-progress,priority:critical,priority:high" | |
| exempt-pr-labels: "status:in-progress,priority:critical,priority:high" |