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 f855631 commit 733566cCopy full SHA for 733566c
.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 9 6 * *' # This is the morning of the 6th.
6
workflow_dispatch:
7
inputs:
8
reason:
@@ -49,5 +50,5 @@ jobs:
49
50
org: ${{ github.repository_owner }}
51
repo: ${{ github.repository }}
52
issue: '-1'
- duration: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.duration || 5 }}
53
+ duration: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.duration || github.event.schedule == '0 9 6 * *' && -1 || 5 }}
54
0 commit comments