-
Notifications
You must be signed in to change notification settings - Fork 80
50 lines (41 loc) · 1.79 KB
/
stale.yml
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
45
46
47
48
49
50
# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
#
# You can adjust the behavior by modifying this file.
# For more information, see:
# https://github.com/actions/stale
name: Mark stale issues and pull requests
on:
schedule:
- cron: '0 11 * * *'
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
# Handle non exempted issues
- uses: actions/stale@v5
with:
exempt-issue-labels: 'Type:Enhancement, Type:Question, Type:Technical Debt'
exempt-all-milestones: true
days-before-stale: 90
days-before-pr-stale: 90
days-before-issue-stale: 90
stale-pr-message: 'This PR had no activity for too long - it will now be labeled stale. Update it to prevent it from getting closed.'
stale-issue-message: 'This issue had no activity for too long - it will now be labeled stale. Update it to prevent it from getting closed.'
days-before-close: 30
days-before-pr-close: 30
days-before-issue-close: 30
close-pr-message: 'This PR is stale and had no activity for too long - it will now be closed.'
close-issue-message: 'This issue is stale and had no activity for too long - it will now be closed.'
# Handle exempted issues
- uses: actions/stale@v5
with:
days-before-stale: 180
days-before-issue-stale: 180
stale-issue-message: 'This issue had no activity for too long - it will now be labeled stale. Update it to prevent it from getting closed.'
days-before-close: 30
days-before-pr-close: 30
days-before-issue-close: 30
close-issue-message: 'This issue is stale and had no activity for too long - it will now be closed.'