Prateeksha Singh | f928422 | 2018-06-21 10:28:44 +0530 | [diff] [blame] | 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 |
Prateeksha Singh | f845e74 | 2018-06-25 11:06:32 +0530 | [diff] [blame] | 4 | daysUntilStale: 10 |
Prateeksha Singh | f928422 | 2018-06-21 10:28:44 +0530 | [diff] [blame] | 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. |
Prateeksha Singh | f845e74 | 2018-06-25 11:06:32 +0530 | [diff] [blame] | 8 | daysUntilClose: 7 |
Prateeksha Singh | f928422 | 2018-06-21 10:28:44 +0530 | [diff] [blame] | 9 | |
| 10 | # Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable |
| 11 | exemptLabels: |
| 12 | - hotfix |
| 13 | |
| 14 | # Set to true to ignore issues in a project (defaults to false) |
| 15 | exemptProjects: false |
| 16 | |
| 17 | # Set to true to ignore issues in a milestone (defaults to false) |
| 18 | exemptMilestones: true |
| 19 | |
| 20 | # Label to use when marking as stale |
| 21 | staleLabel: inactive |
| 22 | |
| 23 | # Comment to post when marking as stale. Set to `false` to disable |
| 24 | markComment: > |
| 25 | This pull request has been automatically marked as stale because it has not had |
Prateeksha Singh | f845e74 | 2018-06-25 11:06:32 +0530 | [diff] [blame] | 26 | recent activity. It will be closed within a week if no further activity occurs, but it |
| 27 | only takes a comment to keep a contribution alive :) Also, even if it is closed, |
| 28 | you can always reopen the PR when you're ready. Thank you for contributing. |
| 29 | |
Prateeksha Singh | f928422 | 2018-06-21 10:28:44 +0530 | [diff] [blame] | 30 | # Limit the number of actions per hour, from 1-30. Default is 30 |
| 31 | limitPerRun: 30 |
| 32 | |
| 33 | # Limit to only `issues` or `pulls` |
| 34 | only: pulls |