...
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: 7
9
10# NOTICE: Check below for the individual settings for each type of event.
11
12# Only issues or pull requests with all of these labels are check if stale. Defaults to `[]` (disabled)
13onlyLabels: []
14
15# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable
16exemptLabels:
17 - pinned
18 - security
19 - keep-open
20 - wip
21 - "[Status] Maybe Later"
22
23# Set to true to ignore issues in a project (defaults to false)
24exemptProjects: true # default: false
25
26# Set to true to ignore issues in a milestone (defaults to false)
27exemptMilestones: true # default: false
28
29# Set to true to ignore issues with an assignee (defaults to false)
30exemptAssignees: false
31
32# Label to use when marking as stale
33staleLabel: stale
34
35# Comment to post when marking as stale. Set to `false` to disable
36# markComment: >
37# This issue has been automatically marked as stale because it has not had
38# recent activity. It will be closed if no further activity occurs. Thank you
39# for your contributions.
40
41# Comment to post when removing the stale label.
42# unmarkComment: >
43# Your comment here.
44
45# Comment to post when closing a stale Issue or Pull Request.
46# closeComment: >
47# Your comment here.
48
49# Limit the number of actions per hour, from 1-30. Default is 30
50limitPerRun: 30
51
52# Limit to only `issues` or `pulls`
53# only: issues
54
55# Optionally, specify configuration settings that are specific to just 'issues' or 'pulls':
56# pulls:
57# daysUntilStale: 30
58# markComment: >
59# This pull request has been automatically marked as stale because it has not had
60# recent activity. It will be closed if no further activity occurs. Thank you
61# for your contributions.
62
63# issues:
64# exemptLabels:
65# - confirmed
66
67pull:
68 daysUntilClose: 14
69 daysUntilStale: 60
70 markComment: >
71 Hello 👋 Looks like there was no activity on this amazing PR for the last 60 days.
72 **Do you mind updating us on the status?** Is there anything we can help with? If you plan to still work on it, just comment on this PR or push a commit. Thanks! 🤗
73
74 If there will be no activity in the next 2 weeks, this issue will be closed (we can always reopen a PR if you get back to this!).
75 # unmarkComment: No need for unmark comment.
76 closeComment: >
77 Closing for now as promised, let us know if you need this to be reopened! 🤗
78issues:
79 daysUntilClose: 90
80 daysUntilStale: 180
81 markComment: >
82 Hello 👋 Looks like there was no activity on this issue for the last 3 months.
83 **Do you mind updating us on the status?** Is this still reproducible or needed? If yes, just comment on this PR or push a commit. Thanks! 🤗
84
85 If there will be no activity in the next 4 weeks, this issue will be closed (we can always reopen an issue if we need!).
86 # unmarkComment: No need for unmark comment.
87 closeComment: >
88 Closing for now as promised, let us know if you need this to be reopened! 🤗
View as plain text