|
1 | 1 | # Configuration for probot-stale based on: https://github.com/facebook/react-native/blob/master/.github/stale.yml |
2 | 2 |
|
3 | | -# Number of days of inactivity before an issue becomes stale |
4 | | -daysUntilStale: 90 |
5 | | - |
6 | | -# Number of days of inactivity before a stale issue is closed |
7 | | -daysUntilClose: 7 |
8 | | - |
9 | | -# Issues with these labels will never be considered stale |
| 3 | +# Number of days of inactivity before an Issue or Pull Request becomes stale |
| 4 | +daysUntilStale: |
| 5 | + 60 |
| 6 | + # Number of days of inactivity before an Issue or Pull Request with the stale label is closed. |
| 7 | +daysUntilClose: |
| 8 | + 7 |
| 9 | + # Issues or Pull Requests. |
10 | 10 | exemptLabels: |
11 | | - - security |
12 | 11 | - pinned |
13 | | - - good first issue |
14 | | - - help wanted |
15 | | - |
16 | | -# Label to use when marking an issue as stale |
17 | | -staleLabel: Stale |
| 12 | + - security |
| 13 | + - discussion |
18 | 14 |
|
19 | | -# Comment to post when marking an issue as stale. Set to `false` to disable |
| 15 | + # Set to true to ignore issues in a project (defaults to false) |
| 16 | +exemptProjects: |
| 17 | + false |
| 18 | + # Set to true to ignore issues in a milestone (defaults to false) |
| 19 | +exemptMilestones: |
| 20 | + false |
| 21 | + # Set to true to ignore issues with an assignee (defaults to false) |
| 22 | +exemptAssignees: |
| 23 | + false |
| 24 | + # Label to use when marking as stale |
| 25 | +staleLabel: |
| 26 | + stale |
| 27 | + # Comment to post when marking as stale. Set to `false` to disable |
20 | 28 | markComment: > |
21 | | - Hey there, it looks like there has been no activity on this issue recently. Has the issue been fixed, or does it still require the community's attention? This issue may be closed if no further activity occurs. |
22 | | - You may also label this issue as a "Discussion" or add it to the "Backlog" and I will leave it open. |
23 | | - Thank you for your contributions. |
24 | | -
|
25 | | -# Comment to post when closing a stale issue. Set to `false` to disable |
| 29 | + This issue has been automatically marked as stale because it has not had |
| 30 | + recent activity. It will be closed if no further activity occurs. Thank you |
| 31 | + for your contributions. You may also mark this issue as a "discussion" and I |
| 32 | + will leave this open. |
| 33 | +# Comment to post when closing a stale Issue or Pull Request. |
26 | 34 | closeComment: > |
27 | | - Closing this issue after a prolonged period of inactivity. If this issue is still present in the latest release, please feel free to create a new issue with up-to-date information. |
28 | | -
|
| 35 | + Closing this issue after a prolonged period of inactivity. Fell free to reopen |
| 36 | + this issue, if this still affecting you. |
| 37 | +# Limit the number of actions per hour, from 1-30. Default is 30 |
| 38 | +limitPerRun: |
| 39 | + 30 |
| 40 | + # Limit to only `issues` or `pulls` |
29 | 41 | only: issues |
0 commit comments