Skip to content

Commit 00bb788

Browse files
authored
chore: enable move and stale probots (#5292)
Enable [stale](https://probot.github.io/apps/stale/) and [move](https://probot.github.io/apps/move/) [probots](https://probot.github.io/). `confirmed` and `a11y` labels have been added as exempt labels for stalebot
1 parent 2d7a4d7 commit 00bb788

File tree

2 files changed

+82
-0
lines changed

2 files changed

+82
-0
lines changed

.github/move.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Configuration for move-issues - https://github.com/dessant/move-issues
2+
3+
# Delete the command comment when it contains no other content
4+
deleteCommand: true
5+
6+
# Close the source issue after moving
7+
closeSourceIssue: true
8+
9+
# Lock the source issue after moving
10+
lockSourceIssue: false
11+
12+
# Mention issue and comment authors
13+
mentionAuthors: true
14+
15+
# Preserve mentions in the issue content
16+
keepContentMentions: false
17+
18+
# Set custom aliases for targets
19+
# aliases:
20+
# r: repo
21+
# or: owner/repo
22+
23+
# Repository to extend settings from
24+
# _extends: repo

.github/stale.yml

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
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: 60
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.
8+
daysUntilClose: 7
9+
10+
# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable
11+
exemptLabels:
12+
- pinned
13+
- a11y
14+
- confirmed
15+
- security
16+
- "[Status] Maybe Later"
17+
18+
# Set to true to ignore issues in a project (defaults to false)
19+
exemptProjects: false
20+
21+
# Set to true to ignore issues in a milestone (defaults to false)
22+
exemptMilestones: false
23+
24+
# Label to use when marking as stale
25+
staleLabel: wontfix
26+
27+
# Comment to post when marking as stale. Set to `false` to disable
28+
markComment: >
29+
This issue has been automatically marked as stale because it has not had
30+
recent activity. It will be closed if no further activity occurs. Thank you
31+
for your contributions.
32+
33+
# Comment to post when removing the stale label.
34+
# unmarkComment: >
35+
# Your comment here.
36+
37+
# Comment to post when closing a stale Issue or Pull Request.
38+
# closeComment: >
39+
# Your comment here.
40+
41+
# Limit the number of actions per hour, from 1-30. Default is 30
42+
limitPerRun: 30
43+
44+
# Limit to only `issues` or `pulls`
45+
# only: issues
46+
47+
# Optionally, specify configuration settings that are specific to just 'issues' or 'pulls':
48+
# pulls:
49+
# daysUntilStale: 30
50+
# markComment: >
51+
# This pull request has been automatically marked as stale because it has not had
52+
# recent activity. It will be closed if no further activity occurs. Thank you
53+
# for your contributions.
54+
55+
# issues:
56+
# exemptLabels:
57+
# - confirmed
58+

0 commit comments

Comments
 (0)