blob: 3ad0bff5d7f91dac0bd1f9c2ba292485ef8aa3d9 [file] [log] [blame]
Prateeksha Singhf9284222018-06-21 10:28:44 +05301# 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 Singhf845e742018-06-25 11:06:32 +05304daysUntilStale: 10
Prateeksha Singhf9284222018-06-21 10:28:44 +05305
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 Singhf845e742018-06-25 11:06:32 +05308daysUntilClose: 7
Prateeksha Singhf9284222018-06-21 10:28:44 +05309
10# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable
11exemptLabels:
12 - hotfix
13
14# Set to true to ignore issues in a project (defaults to false)
15exemptProjects: false
16
17# Set to true to ignore issues in a milestone (defaults to false)
18exemptMilestones: true
19
20# Label to use when marking as stale
21staleLabel: inactive
22
23# Comment to post when marking as stale. Set to `false` to disable
24markComment: >
25 This pull request has been automatically marked as stale because it has not had
Prateeksha Singhf845e742018-06-25 11:06:32 +053026 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 Singhf9284222018-06-21 10:28:44 +053030# Limit the number of actions per hour, from 1-30. Default is 30
31limitPerRun: 30
32
33# Limit to only `issues` or `pulls`
34only: pulls