Repo Management #105
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: Repo Management | |
| # Marks stale issues (30 days), closes them (7 days after stale label), and | |
| # locks closed threads after inactivity. PRs are marked stale but never | |
| # auto-closed — a human must merge or close them. | |
| # | |
| # Only issues carrying a `bug` or `question` label are eligible for stale | |
| # marking; unlabelled or `enhancement`-only issues are left alone. | |
| # | |
| # Locking windows after close: | |
| # issues: 14 days | |
| # PRs: 28 days | |
| # discussions: 365 days | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' # daily at midnight UTC | |
| workflow_dispatch: | |
| jobs: | |
| stale: | |
| name: Mark stale issues and PRs | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| discussions: write | |
| steps: | |
| - uses: actions/stale@eb5cf3af3ac0a1aa4c9c45633dd1ae542a27a899 # v10.3.0 | |
| with: | |
| stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove the stale label or leave a comment otherwise this issue will be closed in 7 days.' | |
| stale-pr-message: 'This PR is stale because it has been open 30 days with no activity.' | |
| close-issue-message: 'This issue was closed because it has been stalled for 7 days with no activity.' | |
| days-before-stale: 30 | |
| days-before-close: 7 | |
| days-before-pr-close: -1 | |
| any-of-labels: 'bug,question' | |
| - uses: dessant/lock-threads@89ae32b08ed1a541efecbab17912962a5e38981c # v6.0.2 | |
| with: | |
| issue-inactive-days: '14' | |
| pr-inactive-days: '28' | |
| discussion-inactive-days: '365' |