Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Dawson <mdawson@devrus.com>2022-04-03 18:27:12 +0300
committerGitHub <noreply@github.com>2022-04-03 18:27:12 +0300
commitd80f07ba80699901e78aa0577f069b59e4cb91a2 (patch)
tree738bc2280816f25c97e7102f028ee5f71e6cb397 /.github
parent84ea25223eca444e9eeb259d5b38db08db12b2f3 (diff)
build: set stale action back to running nightly
I manually ran over the last number of weeks so that we did not mark all of the stale isssues all at once. We are not caught up so we can go to running daily. Signed-off-by: Michael Dawson <mdawson@devrus.com> PR-URL: https://github.com/nodejs/node/pull/42549 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: Tierney Cyren <hello@bnb.im> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/close-stale-feature-requests.yml11
1 files changed, 4 insertions, 7 deletions
diff --git a/.github/workflows/close-stale-feature-requests.yml b/.github/workflows/close-stale-feature-requests.yml
index 0b482ed8ae0..c815b9acbae 100644
--- a/.github/workflows/close-stale-feature-requests.yml
+++ b/.github/workflows/close-stale-feature-requests.yml
@@ -1,12 +1,9 @@
name: Close stale feature requests
on:
workflow_dispatch:
- inputs:
- daysBeforeStale:
- description: Idle number of days before marking feature requests stale
- required: true
- default: 906
- type: number
+ schedule:
+ # Run every day at 1:00 AM UTC.
+ - cron: 0 1 * * *
# yamllint disable rule:empty-lines
env:
@@ -39,7 +36,7 @@ jobs:
- uses: actions/stale@v4
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- days-before-stale: ${{ github.event.inputs.daysBeforeStale }}
+ days-before-stale: 180
days-before-close: 30
stale-issue-label: stale
close-issue-message: ${{ env.CLOSE_MESSAGE }}