-
-
Notifications
You must be signed in to change notification settings - Fork 11
68 lines (46 loc) · 2.78 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: Mark stale issues and pull requests
on:
schedule:
- cron: '0 0 * * 0' # Runs every Sunday at midnight
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
# Message to comment on stale issues.
stale-issue-message: |
Hello! :wave:
This issue has been automatically marked as stale due to inactivity :sleeping:
It will be closed in 180 days if no further activity occurs. To keep it active, please add a comment with more details.
There can be many reasons why a specific issue has no activity. The most probable cause is a lack of time, not a lack of interest.
Let us figure out together how to push this issue forward. Connect with us through our slack channel : https://json-schema.org/slack
Thank you for your patience :heart:
# Message to comment on stale pull requests.
stale-pr-message: |
Hello! :wave:
This pull request has been automatically marked as stale due to inactivity :sleeping:
It will be closed in 180 days if no further activity occurs. To keep it active, please add a comment with more details.
There can be many reasons why a specific pull request has no activity. The most probable cause is a lack of time, not a lack of interest.
Let us figure out together how to push this pull request forward. Connect with us through our slack channel : https://json-schema.org/slack
Thank you for your patience :heart:
# Message to comment on issues that are about to be closed.
close-issue-message: 'This issue did not get any activity in the past 180 days and thus has been closed. Please check if the main branch has fixed it. Please, create a new issue if the issue is not fixed.'
# Message to comment on pull requests that are about to be closed.
close-pr-message: 'This pull request did not get any activity in the past 180 days and thus has been closed.'
# Labels to add to stale issues and pull requests.
stale-issue-label: 'Status: Stale'
stale-pr-label: 'Status: Stale'
# Number of days of inactivity before an issue/PR is marked as stale.
days-before-stale: 30
# Number of days of inactivity before an issue/PR is closed.
days-before-close: 180
# Remove the stale label when the issue/PR is updated.
remove-stale-when-updated: true
# Exempt labels to ignore when checking for stale issues/PRs.
exempt-pr-labels: 'Status: On Hold,Status: Blocked'
exempt-issue-labels: 'Status: On Hold,Status: Blocked'