]> git.donarmstrong.com Git - qmk_firmware.git/blob - .github/stale.yml
Software backlight improvements (#7255)
[qmk_firmware.git] / .github / stale.yml
1 # Configuration for probot-stale - https://github.com/probot/stale
2
3 # General configuration
4
5 # Pull request specific configuration
6 pulls:
7   staleLabel: awaiting changes
8   # Number of days of inactivity before an Issue or Pull Request becomes stale
9   daysUntilStale: 45
10   # Number of days of inactivity before a stale Issue or Pull Request is closed.
11   # Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
12   daysUntilClose: 30
13   # Comment to post when marking as stale. Set to `false` to disable
14   markComment: >
15     Thank you for your contribution!
16
17     This pull request has been automatically marked as stale because it has not had
18     activity in the last 45 days. It will be closed in 30 days if no further activity occurs.
19     Please feel free to give a status update now, or re-open when it's ready.
20     
21     For maintainers: Please label with `awaiting review`, `breaking_change`, `in progress`, or `on hold` to prevent 
22     the issue from being re-flagged.
23   # Comment to post when closing a stale Issue or Pull Request.
24   closeComment: >
25     Thank you for your contribution!
26
27     This pull request has been automatically closed because it has not had activity in the last 30 days.
28     Please feel free to give a status update now, ping for review, or re-open when it's ready.
29   # Limit the number of actions per hour, from 1-30. Default is 30
30   limitPerRun: 30
31   exemptLabels:
32     - awaiting review
33     - breaking_change
34     - in progress
35     - on hold
36
37 # Issue specific configuration
38 issues:
39   staleLabel: stale
40   limitPerRun: 10
41   daysUntilStale: 90
42   daysUntilClose: 30
43   markComment: >
44     This issue has been automatically marked as stale because it has not had activity in the
45     last 90 days. It will be closed in the next 30 days unless it is tagged properly or other activity
46     occurs.
47     
48     For maintainers: Please label with `bug`, `in progress`, `on hold`, `discussion` or `to do` to prevent 
49     the issue from being re-flagged.
50   closeComment: >
51     This issue has been automatically closed because it has not had activity in the last 30 days.
52     If this issue is still valid, re-open the issue and let us know.
53   exemptLabels:
54     - bug
55     - in progress
56     - on hold
57     - discussion
58     - to do