Daily Docker Cache - New Base Images Released #158
This file contains 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: Daily Docker Cache | |
on: | |
schedule: | |
- cron: '0 12 * * 1-5' # Monday - Friday at 5am Arizona Time | |
workflow_dispatch: | |
inputs: | |
# Represents the reason that this workflow is running. If triggering this | |
# workflow with an api call the reason should be included in the request body. | |
reason: | |
required: false | |
default: "Manually triggered" | |
run-name: Daily Docker Cache - ${{ inputs.reason || 'Scheduled Weekly Run' }} | |
jobs: | |
call-refresh-docker-cache-workflow: | |
uses: terascope/workflows/.github/workflows/refresh-docker-cache.yml@f86f716e47d989b939d978befa7721c1f5b10134 | |
secrets: inherit |