Skip to content

Commit e7d7ad9

Browse files
authored
Run scheduler once a day.
Reduce number of runs as this only has a `days-` configuration so running this more than a few times a day feels really overkill.
1 parent bd5c29c commit e7d7ad9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/automate_stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Close Stale Issues and PRs Automatically
22
on:
33
workflow_dispatch:
44
schedule:
5-
- cron: '*/10 * * * *' # run every 10 minutes as it also removes labels.
5+
- cron: '0 1 * * *' # run once a day as it also removes labels.
66

77
jobs:
88
stale:

0 commit comments

Comments
 (0)