StaleBot for cruisekube-frontend #266
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 for cruisekube-frontend | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 12 * * *' | |
| permissions: | |
| contents: read | |
| jobs: | |
| stale_bot_for_cruisekube_frontend: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| discussions: write | |
| pull-requests: write | |
| if: github.repository == 'truefoundry/cruisekube-frontend' | |
| name: Stale issue bot for cruisekube-frontend | |
| steps: | |
| - uses: actions/stale@v9.0.0 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| stale-issue-message: 'This issue has been inactive for 90 days. StaleBot will close this stale issue after 180 more days of inactivity.' | |
| exempt-issue-labels: 'blocked,needs-review,needs-design' | |
| stale-issue-label: 'lifecycle/stale' | |
| close-issue-label: 'lifecycle/closed' | |
| stale-pr-message: 'This PR has been inactive for 90 days. StaleBot will close this stale PR after 180 more days of inactivity.' | |
| exempt-pr-labels: 'blocked,needs-review,needs-design' | |
| stale-pr-label: 'lifecycle/stale' | |
| close-pr-label: 'lifecycle/closed' | |
| days-before-stale: 90 | |
| days-before-close: 180 | |
| operations-per-run: 300 |