diff options
author | Michael Dawson <mdawson@devrus.com> | 2022-02-22 17:59:43 -0500 |
---|---|---|
committer | Michael Dawson <mdawson@devrus.com> | 2022-02-25 10:53:28 -0500 |
commit | 5a6585306309520cb521e0d9ce8603f1d6a91df6 (patch) | |
tree | c6d45b675734472bda4c2f1dbdb78c752a671c38 | |
parent | 2f7920c2088f0e513d3ab848901d297dc47caa50 (diff) | |
download | node-new-5a6585306309520cb521e0d9ce8603f1d6a91df6.tar.gz |
build: last test of the stale feature action
- set the days so that we process ~ 40 issues
so that we can see what kind of feedback we get
on saying we are going to close stale feature requests
- set the label to stale instead of stalled so that
there is no race with the action that closes stalled
issues
- fix the links to the feature management doc
Signed-off-by: Michael Dawson <mdawson@devrus.com>
PR-URL: https://github.com/nodejs/node/pull/42085
Reviewed-By: Mestery <mestery@protonmail.com>
Reviewed-By: Michaƫl Zasso <targos@protonmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
-rw-r--r-- | .github/workflows/close-stale-feature-requests.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/close-stale-feature-requests.yml b/.github/workflows/close-stale-feature-requests.yml index db737a8f86..bb0efd38ae 100644 --- a/.github/workflows/close-stale-feature-requests.yml +++ b/.github/workflows/close-stale-feature-requests.yml @@ -15,7 +15,7 @@ env: For more information on how the project manages feature requests, please consult the - [feature request management document](https://github.com/nodejs/node/blob/HEAD/doc/guides/feature-request-management.md). + [feature request management document](https://github.com/nodejs/node/blob/HEAD/doc/contributing/feature-request-management.md). WARN_MESSAGE: > There has been no activity on this feature request for @@ -25,7 +25,7 @@ env: For more information on how the project manages feature requests, please consult the - [feature request management document](https://github.com/nodejs/node/blob/HEAD/doc/guides/feature-request-management.md). + [feature request management document](https://github.com/nodejs/node/blob/HEAD/doc/contributing/feature-request-management.md). # yamllint enable jobs: @@ -36,9 +36,9 @@ jobs: - uses: actions/stale@v4 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - days-before-stale: 1226 + days-before-stale: 906 days-before-close: 30 - stale-issue-label: stalled + stale-issue-label: stale close-issue-message: ${{ env.CLOSE_MESSAGE }} stale-issue-message: ${{ env.WARN_MESSAGE }} only-labels: feature request |