1- name : Close stale feature requests
1+ name : Close stale
22on :
33 workflow_dispatch :
44 schedule :
88# yamllint disable rule:empty-lines
99env :
1010 CLOSE_MESSAGE : >
11- There has been no activity on this feature request
12- and it is being closed. If you feel closing this issue is not the
13- right thing to do, please leave a comment.
11+ This issue has been automatically closed after 30 days of inactivity
12+ following its stale status (no activity for a total of 210 days).
1413
15-
16- For more information on how the project manages
17- feature requests, please consult the
18- [feature request management document](https://github.com/nodejs/node/blob/HEAD/doc/contributing/feature-request-management.md).
14+ If this is still relevant, feel free to reopen it or leave a comment
15+ with additional details so we can continue the discussion.
1916
2017 WARN_MESSAGE : >
21- There has been no activity on this feature request for
22- 5 months. To help maintain relevant open issues, please
23- add the https://github.com/nodejs/node/labels/never-stale
24- label or close this issue if it should be closed. If not,
25- the issue will be automatically closed 6 months after the
26- last non-automated comment.
18+ This issue has been marked as stale due to 180 days of inactivity.
2719
28- For more information on how the project manages
29- feature requests, please consult the
30- [feature request management document](https://github.com/nodejs/node/blob/HEAD/doc/contributing/feature-request-management.md).
20+ It will be automatically closed in 30 days if no further activity occurs.
21+ If this is still relevant, please leave a comment or update it to keep it open.
3122# yamllint enable
3223
3324permissions :
@@ -47,10 +38,13 @@ jobs:
4738 days-before-stale : 180
4839 days-before-close : 30
4940 stale-issue-label : stale
41+ exempt-issue-labels : never-stale
5042 close-issue-message : ${{ env.CLOSE_MESSAGE }}
5143 stale-issue-message : ${{ env.WARN_MESSAGE }}
52- only-labels : feature request
53- exempt-issue-labels : never-stale
44+ stale-pr-label : stale
45+ exempt-pr-labels : never-stale
46+ close-pr-message : ${{ env.CLOSE_MESSAGE }}
47+ stale-pr-message : ${{ env.WARN_MESSAGE }}
5448 # max requests it will send per run to the GitHub API before it deliberately exits to avoid hitting API rate limits
5549 operations-per-run : 500
5650 remove-stale-when-updated : true
0 commit comments