|
| 1 | +# Configuration for probot-stale # |
| 2 | +# CAO: https://github.com/probot/stale/tree/4232daafc73492864b559b55c9cf2689d19d5b23 # |
| 3 | +# ================================================================================== # |
| 4 | +# Rule summary |
| 5 | +# ---------------------------------------------------------------------------------- # |
| 6 | +# Comment & mark 90-day old issues as stale |
| 7 | +# Close stalled issues after 7 days |
| 8 | +# Comment & mark 60-day old PR as stale |
| 9 | +# Close stalled PRs after 10 days |
| 10 | +# Any issue/pr with a planned milestone is exempt |
| 11 | +# Issues/PRs with a confirmed label are exempt |
| 12 | +# ================================================================================== # |
| 13 | +# See repo url for descriptions of settings |
| 14 | + |
| 15 | +# ALL |
| 16 | +staleLabel: stale |
| 17 | +limitPerRun: 30 # numActions/hour |
| 18 | + |
| 19 | + |
| 20 | +issues: |
| 21 | + daysUntilStale: 90 |
| 22 | + daysUntilClose: 7 |
| 23 | + exemptProjects: false |
| 24 | + exemptMilestones: true |
| 25 | + exemptAssignees: false |
| 26 | + exemptLabels: |
| 27 | + - confirmed |
| 28 | + - help-wanted |
| 29 | + markComment: > |
| 30 | + This issue is stale because it has been open 90 days with no recent activity. |
| 31 | + It will be closed in 7 days, if no further activity occurs. Thank you for |
| 32 | + your contributions. |
| 33 | + unmarkComment: > |
| 34 | + Thank you for the update and contribution! The stale label has been removed |
| 35 | + and this issue will not be closed at this time. |
| 36 | + closeComment: > |
| 37 | + This issue was closed because activity was dormant for 97 days. |
| 38 | +
|
| 39 | +
|
| 40 | +pulls: |
| 41 | + daysUntilStale: 60 |
| 42 | + daysUntilClose: 10 |
| 43 | + exemptProjects: false |
| 44 | + exemptMilestones: true |
| 45 | + exemptAssignees: false |
| 46 | + exemptLabels: |
| 47 | + - confirmed |
| 48 | + # Ignore PRs opened by Dependabot |
| 49 | + - dependencies |
| 50 | + markComment: > |
| 51 | + This PR is stale because it has been open 60 days with no recent activity. |
| 52 | + It will be closed in 10 days, if no further activity occurs. Thank you for |
| 53 | + your contributions. |
| 54 | + unmarkComment: > |
| 55 | + Thank you for the update and contribution! The stale label has been removed |
| 56 | + and this PR will not be closed at this time. |
| 57 | + closeComment: > |
| 58 | + This PR was closed because activity was dormant for 70 days. |
0 commit comments