Stale Checker #1427
This file contains 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 Checker | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
stale: | |
name: Check stale issues | |
runs-on: ubuntu-latest | |
steps: | |
- name: Run stale action | |
uses: actions/stale@v4 | |
with: | |
close-issue-message: ${{ env.CLOSE_MESSAGE }} | |
close-pr-message: ${{ env.CLOSE_MESSAGE }} | |
days-before-stale: 60 | |
days-before-close: 10 | |
exempt-issue-labels: ${{ env.EXEMPT_LABEL }} | |
exempt-pr-labels: ${{ env.EXEMPT_LABEL }} | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
stale-issue-label: ${{ env.STALE_LABEL }} | |
stale-pr-label: ${{ env.STALE_LABEL }} | |
stale-issue-message: ${{ env.STALE_MESSAGE }} | |
stale-pr-message: ${{ env.STALE_MESSAGE }} | |
env: | |
CLOSE_MESSAGE: 'This issue has been closed because it is stale. Reopen if necessary.' | |
EXEMPT_LABEL: 'priority: low,priority: normal,priority: high,status: help wanted,status: in progress,status: needs triage' | |
STALE_LABEL: 'status: stale' | |
STALE_MESSAGE: 'This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 10 days' |