Stale Issues #238
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 Issues | |
on: | |
schedule: | |
- cron: "30 1 * * *" | |
workflow_dispatch: | |
jobs: | |
close-stale-issues: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
pull-requests: write | |
steps: | |
- uses: actions/[email protected] | |
with: | |
days-before-issue-stale: 3 | |
days-before-issue-close: 3 | |
stale-issue-label: "to-be-closed" | |
exempt-issue-labels: "in-progress" | |
close-issue-reason: "completed" | |
stale-issue-message: "This case has been marked as 'to-be-closed', since it has no activity for the 3 days.<br />It will be automatically closed in another 3 days of inactivity." | |
close-issue-message: "This case has been closed, since it has no activity for the last 6 days. Feel free to reopen it, if you need more help." | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |