Skip to content

Commit 952850f

Browse files
meta(gha): Deploy action stale.yml (#3991)
Co-authored-by: Vladan Paunovic <[email protected]>
1 parent 965714e commit 952850f

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed

.github/workflows/stale.yml

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: 'close stale issues/PRs'
2+
on:
3+
schedule:
4+
- cron: '* */3 * * *'
5+
workflow_dispatch:
6+
jobs:
7+
stale:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/stale@87c2b794b9b47a9bec68ae03c01aeb572ffebdb1
11+
with:
12+
repo-token: ${{ github.token }}
13+
days-before-stale: 21
14+
days-before-close: 7
15+
only-labels: ""
16+
operations-per-run: 100
17+
remove-stale-when-updated: true
18+
debug-only: false
19+
ascending: false
20+
21+
exempt-issue-labels: "Status: Backlog,Status: In Progress"
22+
stale-issue-label: "Status: Stale"
23+
stale-issue-message: |-
24+
This issue has gone three weeks without activity. In another week, I will close it.
25+
26+
But! If you comment or otherwise update it, I will reset the clock, and if you label it `Status: Backlog` or `Status: In Progress`, I will leave it alone ... forever!
27+
28+
----
29+
30+
"A weed is but an unloved flower." ― _Ella Wheeler Wilcox_ 🥀
31+
skip-stale-issue-message: false
32+
close-issue-label: ""
33+
close-issue-message: ""
34+
35+
exempt-pr-labels: "Status: Backlog,Status: In Progress"
36+
stale-pr-label: "Status: Stale"
37+
stale-pr-message: |-
38+
This pull request has gone three weeks without activity. In another week, I will close it.
39+
40+
But! If you comment or otherwise update it, I will reset the clock, and if you label it `Status: Backlog` or `Status: In Progress`, I will leave it alone ... forever!
41+
42+
----
43+
44+
"A weed is but an unloved flower." ― _Ella Wheeler Wilcox_ 🥀
45+
skip-stale-pr-message: false
46+
close-pr-label:
47+
close-pr-message: ""

0 commit comments

Comments
 (0)