-
Notifications
You must be signed in to change notification settings - Fork 153
36 lines (33 loc) · 1.26 KB
/
stale.yml
File metadata and controls
36 lines (33 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Manage Stale Issues and PRs
on:
schedule:
- cron: '0 9 * * MON'
workflow_dispatch:
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e # v9.0.0
with:
days-before-stale: 60
days-before-close: 14
stale-issue-label: 'stale'
stale-pr-label: 'stale'
stale-issue-message: >
This issue has been inactive for 60 days. It will be closed in 14 days
if there is no further activity. If this is still relevant, please comment
to keep it open.
stale-pr-message: >
This PR has been inactive for 60 days. It will be closed in 14 days
if there is no further activity. If you are still working on this,
please push an update or comment to keep it open.
close-issue-message: >
Closed due to inactivity. Feel free to reopen if this is still relevant.
close-pr-message: >
Closed due to inactivity. Feel free to reopen if you'd like to continue this work.
exempt-issue-labels: 'bug,enhancement,help-wanted'
exempt-pr-labels: 'help-wanted'
operations-per-run: 50