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 2e7a10d commit ed77b75Copy full SHA for ed77b75
.github/workflows/quest-bulk.yml
@@ -2,6 +2,8 @@ name: "bulk quest import"
2
on:
3
schedule:
4
- cron: '0 10 * * *' # UTC time, that's 5:00 am EST, 2:00 am PST.
5
+ - cron: '0 9 6 * *' # This is the morning of the 6th.
6
+
7
workflow_dispatch:
8
inputs:
9
reason:
@@ -56,4 +58,4 @@ jobs:
56
58
org: ${{ github.repository_owner }}
57
59
repo: ${{ github.repository }}
60
issue: '-1'
- duration: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.duration || 5 }}
61
+ duration: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.duration || github.event.schedule == '0 9 6 * *' && -1 || 5 }}
0 commit comments