stale #214
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 | |
| on: | |
| schedule: | |
| - cron: "0 13 * * 1" | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/stale@v3 | |
| with: | |
| days-before-stale: 90 | |
| days-before-close: 7 | |
| stale-issue-label: "stale :zzz:" | |
| stale-issue-message: "This issue is stale. Remove stale label or it will be closed next week." | |
| stale-pr-label: "stale :zzz:" | |
| stale-pr-message: "This PR is stale. Remove stale label or it will be closed next week." | |
| exempt-issue-labels: "in progress :construction:" | |
| exempt-pr-labels: "in progress :construction:" |