-
Notifications
You must be signed in to change notification settings - Fork 446
44 lines (37 loc) · 1.52 KB
/
Copy pathstale.yml
File metadata and controls
44 lines (37 loc) · 1.52 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
37
38
39
40
41
42
43
44
name: Stale issues and pull requests
on:
schedule:
- cron: '30 1 * * *'
workflow_dispatch:
permissions:
issues: write
pull-requests: write
actions: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v11
with:
stale-issue-label: 'stale'
stale-pr-label: 'stale'
exempt-issue-labels: 'good first issue,Design Proposal,in-progress,Server-Side Enhancement'
exempt-pr-labels: 'in-progress'
days-before-issue-stale: 60
days-before-issue-close: 14
days-before-pr-stale: 90
days-before-pr-close: 14
operations-per-run: 300
close-issue-reason: 'not_planned'
stale-issue-message: >
This issue has been automatically marked as stale because it has not had
recent activity. It will be closed in 14 days if no further activity occurs.
If this is still relevant, please comment to keep it open.
stale-pr-message: >
This pull request has been automatically marked as stale because it has not had
recent activity. It will be closed in 14 days if no further activity occurs.
If this is still active work, please comment or push a new commit to keep it open.
close-issue-message: >
Closing due to inactivity. If this is still relevant, please reopen or file a new issue.
close-pr-message: >
Closing due to inactivity. Feel free to reopen if you'd like to continue this work.