Close stale issues #126
This file contains hidden or 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 * * *" | |
| jobs: | |
| stale: | |
| if: github.repository_owner == 'KelvinTegelaar' | |
| runs-on: ubuntu-slim | |
| steps: | |
| - uses: actions/stale@v10 | |
| with: | |
| stale-issue-message: "This issue is stale because it has been open for 10 days with no activity. Please do not bump feature requests unless you are actively working on them, as bumps interfere with our triage process and make it harder to maintain a current list of feature requests. If you want this feature implemented, you can contribute it yourself; see https://docs.cipp.app/dev-documentation/contributing-to-the-code. Please notify the team if you are working on this." | |
| close-issue-message: "This issue was closed because it has been stalled for 14 days without activity. We auto-close inactive feature requests to keep the backlog focused and actionable. If this request is still needed, you may submit it again after 30 days." | |
| stale-issue-label: "no-activity" | |
| exempt-issue-labels: "planned,bug,roadmap" | |
| days-before-stale: 9 | |
| days-before-close: 5 | |
| days-before-pr-stale: -1 | |
| days-before-pr-close: -1 |