.github/workflows/nightshift-scheduler.yaml #2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: nightshift-scheduler | ||
| run-name: 'nightshift scheduler' | ||
| on: | ||
| schedule: | ||
| - cron: '0 6 * * 1-5' # weekdays 06:00 UTC (168h cooldown gates to ~weekly) | ||
| workflow_dispatch: | ||
| inputs: | ||
| dry_run: | ||
| description: 'List tasks that would run without executing them' | ||
| required: false | ||
| default: false | ||
| type: boolean | ||
| jobs: | ||
| schedule: | ||
| uses: BitGo/nightshift-actions/.github/workflows/nightshift-scheduler.yaml@v1 | ||
|
Check failure on line 17 in .github/workflows/nightshift-scheduler.yaml
|
||
| with: | ||
| dry_run: ${{ inputs.dry_run || false }} | ||