stalebot #1495
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: stalebot | |
| on: | |
| schedule: | |
| - cron: '00 00 * * *' | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| steps: | |
| - uses: actions/stale@v10 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| stale-issue-message: 'This will be closed soon due to inactivity' | |
| stale-pr-message: 'This will be closed soon due to inactivity' | |
| stale-issue-label: 'no-issue-activity' | |
| stale-pr-label: 'no-pr-activity' |