We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e1febb commit f12c7cdCopy full SHA for f12c7cd
.github/workflows/stale-issue-cleanup.yml
@@ -2,11 +2,10 @@ name: "Close stale issues"
2
3
# Controls when the action will run.
4
on:
5
- # allows doing a manual trigger of the action
+ # allows doing a manual trigger of the action and running it on a schedule at 10am PT everyday(converted since expression is anchored to UTC)
6
workflow_dispatch:
7
- # disable cron until dry run is completed successfully
8
- # schedule:
9
- # - cron: "0 0 * * *"
+ schedule:
+ - cron: "0 17 * * *"
10
11
permissions: {}
12
jobs:
@@ -50,4 +49,4 @@ jobs:
50
49
# Testing/debugging options
51
loglevel: DEBUG
52
# Set dry-run to true to not perform label or close actions.
53
- dry-run: true
+ dry-run: false
0 commit comments