Stale bot #8
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 bot | |
| on: | |
| schedule: | |
| - cron: "18 04 * * 3" | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Close stale issues/PRs | |
| uses: actions/stale@v9 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| # DOCS https://github.com/actions/stale#all-options | |
| days-before-stale: 90 | |
| days-before-close: 7 | |
| stale-issue-label: Stale | |
| stale-issue-message: | | |
| This issue has been automatically marked as stale. | |
| If this issue is still relevant, please leave any comment, and it will be kept open. | |
| close-issue-message: | | |
| This issue has been closed due to inactivity, and will not be monitored. | |
| stale-PR-label: Stale | |
| stale-pr-message: | | |
| This PR has been automatically marked as stale. | |
| If this issue is still relevant, please leave any comment, and it will be kept open. | |
| close-pr-message: | | |
| This PR has been closed due to inactivity, and will not be monitored. |