Skip to content

Commit 5fe11b7

Browse files
mhdawsonjuanarbol
authored andcommitted
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: #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>
1 parent 0704e3b commit 5fe11b7

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/close-stale-feature-requests.yml

+4-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
name: Close stale feature requests
22
on:
33
workflow_dispatch:
4-
inputs:
5-
daysBeforeStale:
6-
description: Idle number of days before marking feature requests stale
7-
required: true
8-
default: 906
9-
type: number
4+
schedule:
5+
# Run every day at 1:00 AM UTC.
6+
- cron: 0 1 * * *
107

118
# yamllint disable rule:empty-lines
129
env:
@@ -39,7 +36,7 @@ jobs:
3936
- uses: actions/stale@v4
4037
with:
4138
repo-token: ${{ secrets.GITHUB_TOKEN }}
42-
days-before-stale: ${{ github.event.inputs.daysBeforeStale }}
39+
days-before-stale: 180
4340
days-before-close: 30
4441
stale-issue-label: stale
4542
close-issue-message: ${{ env.CLOSE_MESSAGE }}

0 commit comments

Comments
 (0)