Stale #28
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: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '45 11 * * *' | |
| jobs: | |
| stale: | |
| name: Stale Bot | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| steps: | |
| - uses: actions/[email protected] | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| stale-issue-label: 'stale' | |
| stale-pr-label: 'stale' | |
| exempt-issue-labels: pinned,security,long running,discussion,vision | |
| exempt-pr-labels: 'awaiting-approval,work-in-progress,pinned' | |
| stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.' | |
| stale-pr-message: 'This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.' | |
| close-issue-message: 'This issue has been closed as no further activity has occurred.' | |
| close-pr-message: 'This pull request has been automatically closed because it has not had recent activity. Thank you for your contributions.' | |
| days-before-issue-stale: 30 | |
| days-before-issue-close: 5 | |
| days-before-stale: 15 | |
| days-before-close: 2 | |
| remove-stale-when-updated: true |