|
| 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: 30 |
| 5 | + |
| 6 | +# Number of days of inactivity before a stale Issue or Pull Request 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: 10 |
| 9 | + |
| 10 | +# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable |
| 11 | +exemptLabels: |
| 12 | + - Issue-Meta |
| 13 | + - Issue-Discussion |
| 14 | + |
| 15 | +# Set to true to ignore issues in a project (defaults to false) |
| 16 | +exemptProjects: true |
| 17 | + |
| 18 | +# Set to true to ignore issues in a milestone (defaults to false) |
| 19 | +exemptMilestones: false |
| 20 | + |
| 21 | +# Label to use when marking as stale |
| 22 | +staleLabel: Review - Abandoned |
| 23 | + |
| 24 | +# Comment to post when marking as stale. Set to `false` to disable |
| 25 | +markComment: > |
| 26 | + This PR has been automatically marked as stale because it has not had activity in the last 30 days. |
| 27 | + It will be closed if no further activity occurs within 10 days. |
| 28 | +
|
| 29 | + Thank you for your contributions. |
| 30 | +
|
| 31 | + Community members are welcome to grab these works. |
| 32 | +
|
| 33 | +# Comment to post when removing the stale label. |
| 34 | +# unmarkComment: > |
| 35 | +# Your comment here. |
| 36 | + |
| 37 | +# Comment to post when closing a stale Issue or Pull Request. |
| 38 | +closeComment: > |
| 39 | + This PR has be automatically close because it is stale. |
| 40 | + If you wish to continue working on the PR, please first update the PR, then reopen it. |
| 41 | +
|
| 42 | + Thanks again for your contribution. |
| 43 | +
|
| 44 | + Community members are welcome to grab these works. |
| 45 | +
|
| 46 | +# Limit the number of actions per hour, from 1-30. Default is 30 |
| 47 | +limitPerRun: 30 |
| 48 | + |
| 49 | +# Limit to only `issues` or `pulls` |
| 50 | +only: pulls |
| 51 | + |
| 52 | +# Optionally, specify configuration settings that are specific to just 'issues' or 'pulls': |
| 53 | +# pulls: |
| 54 | +# daysUntilStale: 30 |
| 55 | +# markComment: > |
| 56 | +# This pull request has been automatically marked as stale because it has not had |
| 57 | +# recent activity. It will be closed if no further activity occurs. Thank you |
| 58 | +# for your contributions. |
| 59 | + |
| 60 | +# issues: |
| 61 | +# exemptLabels: |
| 62 | +# - confirmed |
0 commit comments