Skip to content

Commit d80f07b

Browse files
authored
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 <[email protected]> PR-URL: #42549 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Mestery <[email protected]> Reviewed-By: Tierney Cyren <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 84ea252 commit d80f07b

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

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

Lines changed: 4 additions & 7 deletions
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)