ci-locks #83
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
# Updates the environment lock files. See the called workflow in the | |
# scitools/workflows repo for more details. | |
name: ci-locks | |
on: | |
workflow_dispatch: | |
schedule: | |
# Run once a week on a Saturday night | |
# N.B. "should" be quoted, according to | |
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#onschedule | |
- cron: "3 0 * * 6" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
refresh_lockfiles: | |
uses: scitools/workflows/.github/workflows/[email protected] | |
secrets: inherit |