Close stale issues and PRs #760
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 and PRs' | |
on: | |
schedule: | |
- cron: '30 1 * * *' | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v6 | |
with: | |
days-before-stale: 90 | |
exempt-issue-labels: 'enhancement,no_stale' | |
stale-issue-label: 'stale' | |
stale-issue-message: > | |
There hasn't been any activity on this issue recently. In an effort | |
to provide a better overview of current issues we automatically clean | |
some of the old ones. Many of them may already be resolved in newer | |
versions of room-assistant. | |
This issue has now been marked as stale and will be closed if no further | |
activity occurs. Thank you for your contributions. |