Housekeeping #1018
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: 'Housekeeping' | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/stale@b5d41d4e1d5dceea10e7104786b73624c18a190f # v10.2.0 | |
| with: | |
| stale-issue-message: | | |
| This issue is stale because it has been open for 1 year with no activity. | |
| Remove the stale label or comment if this issue is still relevant for you. | |
| If not, please close it yourself. | |
| days-before-issue-stale: 365 | |
| days-before-pr-stale: -1 | |
| days-before-close: -1 | |
| days-before-pr-close: -1 | |
| triage: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| steps: | |
| - uses: actions/stale@b5d41d4e1d5dceea10e7104786b73624c18a190f # v10.2.0 | |
| with: | |
| only-labels: 'needs-triage' | |
| stale-issue-message: | | |
| This issue has been waiting for triage for 14 days with no updates. | |
| Please add more details or the correct labels so a maintainer can route it. | |
| close-issue-message: | | |
| This issue was closed after 30 days in the triage queue due to inactivity. | |
| If this is still relevant, please reopen it with additional details. | |
| days-before-issue-stale: 14 | |
| days-before-close: 16 | |
| days-before-pr-stale: -1 | |
| days-before-pr-close: -1 |