We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63823f1 commit a6210dfCopy full SHA for a6210df
.github/workflows/quest-bulk.yml
@@ -2,6 +2,7 @@ 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 10 6 * *' # This is the morning of the 6th.
6
workflow_dispatch:
7
inputs:
8
reason:
@@ -57,4 +58,4 @@ jobs:
57
58
org: ${{ github.repository_owner }}
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 10 6 * *' && -1 || 5 }}
0 commit comments