Skip to content

Commit 4847ce3

Browse files
committed
Update stale action
1 parent b0f5370 commit 4847ce3

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

.github/workflows/stale.yml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: "Close stale issues and PRs"
2+
on:
3+
schedule:
4+
- cron: "30 1 * * *"
5+
6+
jobs:
7+
stale:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/stale@v3
11+
with:
12+
stale-issue-message: |
13+
This issue has been automatically marked as stale because it has not had recent activity.
14+
15+
If this is a **bug** and you can still reproduce this error on the `master` branch, please reply with any additional information you have about it in order to keep the issue open.
16+
17+
If this is a feature request, please consider whether it can be accomplished in another way. If it cannot, please elaborate on why it is core to this project and why you feel more than 80% of users would find this beneficial.
18+
19+
This issue will automatically be closed in 7 days if no further activity occurs. Thank you for all your contributions.
20+
stale-pr-message: |
21+
This issue has been automatically marked as stale because it has not had recent activity.
22+
23+
If this is a **bug** and you can still reproduce this error on the `master` branch, please reply with any additional information you have about it in order to keep the issue open.
24+
25+
If this is a feature request, please consider whether it can be accomplished in another way. If it cannot, please elaborate on why it is core to this project and why you feel more than 80% of users would find this beneficial.
26+
27+
This issue will automatically be closed in 7 days if no further activity occurs. Thank you for all your contributions.
28+
stale-issue-label: "Status: Stale"
29+
exempt-issue-labels:
30+
- "Status: Accepted"
31+
- "Status: Under Consideration"
32+
- "Status: Review Needed"
33+
- "Status: In Progress"
34+
stale-pr-label: "Status: Stale"
35+
exempt-pr-labels:
36+
- "Status: Accepted"
37+
- "Status: Under Consideration"
38+
- "Status: Review Needed"
39+
- "Status: In Progress"

0 commit comments

Comments
 (0)