Close stale issues #355
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: 'Close stale issues' | |
on: | |
schedule: | |
- cron: '30 1 * * *' | |
workflow_dispatch: | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- uses: actions/stale@v8 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
stale-issue-message: > | |
This issue has gone quiet. Spooky quiet. | |
We currently close issues after 14 days of inactivity. It’s been at least 7 days since the last update here. | |
If we missed this issue or if you want to keep it open, please reply here. | |
As a friendly reminder, the best way to fix this or any other problem is to provide a detailed error description including a serial log. | |
Thanks for being a part of the SinricPro community! | |
close-issue-message: > | |
Hey again! | |
It’s been 14 days since anything happened on this issue, so our friendly robot (that’s me!) is going to close it. | |
Please keep in mind that I’m only a robot, so if I’ve closed this issue in error, I’m `HUMAN_EMOTION_SORRY`. Please feel free to comment on this issue or create a new one if you need anything else. | |
As a friendly reminder, the best way to fix this or any other problem is to provide a detailed error description including a serial log. | |
Thanks again for being a part of the SinricPro community! | |
days-before-stale: 7 | |
days-before-close: 7 | |
days-before-pr-stale: -1 | |
days-before-pr-close: -1 | |
exempt-issue-labels: 'no-stale' |