Mark stale issues and pull requests #593
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: Mark stale issues and pull requests | |
on: | |
schedule: | |
- cron: "30 1 * * *" | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v3 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
stale-issue-message: > | |
There hasn't been any activity on this issue recently. | |
Please make sure to update to the latest Homebridge TaHoma version to see | |
if that solves the issue. | |
This issue will be closed in case of inactivity. | |
days-before-stale: 90 | |
days-before-close: 120 | |
stale-issue-label: "inactive" | |
exempt-issue-labels: "blocked,waiting" |