|
| 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 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: 5 |
| 9 | + |
| 10 | +# Only issues or pull requests with all of these labels are check if stale. Defaults to `[]` (disabled) |
| 11 | +onlyLabels: [] |
| 12 | + |
| 13 | +# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable |
| 14 | +exemptLabels: |
| 15 | + - pinned |
| 16 | + - security |
| 17 | + - "[Status] Maybe Later" |
| 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 | +# Set to true to ignore issues with an assignee (defaults to false) |
| 26 | +exemptAssignees: false |
| 27 | + |
| 28 | +# Label to use when marking as stale |
| 29 | +staleLabel: stale |
| 30 | + |
| 31 | +# Comment to post when marking as stale. Set to `false` to disable |
| 32 | +markComment: > |
| 33 | +
|
| 34 | +# Limit the number of actions per hour, from 1-30. Default is 30 |
| 35 | +limitPerRun: 30 |
| 36 | + |
| 37 | +# Optionally, specify configuration settings that are specific to just 'issues' or 'pulls': |
| 38 | +pulls: |
| 39 | + markComment: > |
| 40 | + Thank you for your contribution! However, it has |
| 41 | + not had any activity on it in the past 30 days and will be closed in |
| 42 | + 5 days if no updates occur. If you believe the changes are still valid then please verify your |
| 43 | + branch has no conflicts with target and rebase if needed. If you |
| 44 | + are awaiting a (re-)review then please let us know. |
| 45 | +
|
| 46 | +issues: |
| 47 | + markComment: > |
| 48 | + Thank you for your contribution! However, it has |
| 49 | + not had any activity on it in the past 30 days and will be closed in |
| 50 | + 5 days if no updates occur. If you would like this issue to remain open: |
| 51 | +
|
| 52 | + 1. Verify that you can still reproduce the issue in the latest version of erxes |
| 53 | + 1. Comment that the issue is still reproducible and include: |
| 54 | + * What version of erxes you reproduced the issue on |
| 55 | + * What OS and version you reproduced the issue on |
| 56 | + * What steps you followed to reproduce the issue |
| 57 | +# exemptLabels: |
| 58 | +# - confirmed |
0 commit comments