|
| 1 | +# Configuration for probot-stale - https://github.com/probot/stale |
| 2 | + |
| 3 | +# Number of days of inactivity before an Issue or Pull Request becomes stale |
| 4 | +daysUntilStale: 60 |
| 5 | + |
| 6 | +# Number of days of inactivity before an Issue or Pull Request with the stale label is closed. |
| 7 | +# Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale. |
| 8 | +daysUntilClose: 14 |
| 9 | + |
| 10 | +# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable |
| 11 | +exemptLabels: |
| 12 | + - status/blocked |
| 13 | + - kind/security |
| 14 | + - lgtm/done |
| 15 | + - reviewed/confirmed |
| 16 | + - priority/critical |
| 17 | + - kind/proposal |
| 18 | + |
| 19 | +# Set to true to ignore issues in a project (defaults to false) |
| 20 | +exemptProjects: false |
| 21 | + |
| 22 | +# Set to true to ignore issues in a milestone (defaults to false) |
| 23 | +exemptMilestones: false |
| 24 | + |
| 25 | +# Label to use when marking as stale |
| 26 | +staleLabel: stale |
| 27 | + |
| 28 | +# Comment to post when marking as stale. Set to `false` to disable |
| 29 | +markComment: > |
| 30 | + This issue has been automatically marked as stale because it has not had |
| 31 | + recent activity. It will be closed if no further activity occurs during the next 2 weeks. Thank you |
| 32 | + for your contributions. |
| 33 | +
|
| 34 | +# Comment to post when closing a stale Issue or Pull Request. |
| 35 | +closeComment: > |
| 36 | + This issue has been automatically closed because of inactivity. |
| 37 | + You can re-open it if needed. |
| 38 | +
|
| 39 | +# Limit the number of actions per hour, from 1-30. Default is 30 |
| 40 | +limitPerRun: 1 |
| 41 | + |
| 42 | +# Optionally, specify configuration settings that are specific to just 'issues' or 'pulls': |
| 43 | +pulls: |
| 44 | + daysUntilStale: 60 |
| 45 | + markComment: > |
| 46 | + This pull request has been automatically marked as stale because it has not had |
| 47 | + recent activity. It will be closed if no further activity occurs during the next 2 months. Thank you |
| 48 | + for your contributions. |
| 49 | + closeComment: > |
| 50 | + This pull request has been automatically closed because of inactivity. |
| 51 | + You can re-open it if needed. |
| 52 | +
|
0 commit comments