blob: 1a4dfadf1ecd62a007deb285030b46c44777294f [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
4daysUntilStale: 7
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.
8daysUntilClose: 2
9
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
26 recent activity. It will be closed if no further activity occurs, but it
27 only takes a comment to keep a contribution alive :) Thank you
28 for contributing.
29# Limit the number of actions per hour, from 1-30. Default is 30
30limitPerRun: 30
31
32# Limit to only `issues` or `pulls`
33only: pulls