Close stale issues and PRs #680
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: | |
if: github.repository_owner == 'KelvinTegelaar' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v4 | |
with: | |
stale-issue-message: 'This issue is stale because it has been open 10 days with no activity. We will close this issue soon. If you want this feature implemented you can contribute it. See: https://docs.cipp.app/dev-documentation/contributing-to-the-code . Please notify the team if you are working on this yourself.' | |
close-issue-message: 'This issue was closed because it has been stalled for 14 days with no activity.' | |
stale-issue-label: 'no-activity' | |
exempt-issue-labels: 'planned' | |
days-before-stale: 9 | |
days-before-close: 14 |