Skip to content

Commit 6b891d1

Browse files
authored
Improve issue and PR backlog management (#2305)
1 parent 30d955c commit 6b891d1

File tree

1 file changed

+24
-9
lines changed

1 file changed

+24
-9
lines changed

.github/workflows/issue-management-stale-action.yml

Lines changed: 24 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,34 @@ jobs:
1818
steps:
1919
- uses: actions/stale@3a9db7e6a41a89f618792c92c0e97cc736e1b13f # v10.0.0
2020
with:
21-
repo-token: ${{ secrets.GITHUB_TOKEN }}
2221
days-before-stale: 7
2322
days-before-close: 7
2423
only-labels: "needs author feedback"
2524
stale-issue-label: stale
2625
stale-issue-message: >
27-
This has been automatically marked as stale because it has been marked
28-
as needing author feedback and has not had any activity for 7 days.
29-
It will be closed automatically if there is no response from the author
30-
within 7 additional days from this comment.
26+
This issue has been labeled as stale due to lack of activity and needing author feedback.
27+
It will be automatically closed if there is no further activity over the next 7 days.
3128
stale-pr-label: stale
3229
stale-pr-message: >
33-
This has been automatically marked as stale because it has been marked
34-
as needing author feedback and has not had any activity for 7 days.
35-
It will be closed automatically if there is no response from the author
36-
within 7 additional days from this comment.
30+
This PR has been labeled as stale due to lack of activity and needing author feedback.
31+
It will be automatically closed if there is no further activity over the next 7 days.
32+
33+
- uses: actions/stale@3a9db7e6a41a89f618792c92c0e97cc736e1b13f # v10.0.0
34+
with:
35+
days-before-stale: -1
36+
days-before-close: 365
37+
close-issue-label: stale
38+
close-issue-message: >
39+
Since there has been no activity on this enhancement for the past year we are closing it to help maintain our backlog.
40+
Anyone who would like to work on it is still welcome to do so, and we can re-open it at that time.
41+
only-labels: "enhancement"
42+
43+
- uses: actions/stale@3a9db7e6a41a89f618792c92c0e97cc736e1b13f # v10.0.0
44+
with:
45+
days-before-pr-stale: 90
46+
days-before-pr-close: 14
47+
stale-pr-label: stale
48+
stale-pr-message: >
49+
This PR has been labeled as stale due to lack of activity.
50+
It will be automatically closed if there is no further activity over the next 14 days.
51+
exempt-draft-pr: false

0 commit comments

Comments
 (0)