call preload caches #49
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: call preload caches | |
| on: | |
| push: | |
| branches: | |
| - main | |
| schedule: | |
| # Run every Monday at 7:45am UTC. | |
| - cron: 45 7 * * 1 | |
| # Allow manually running this workflow. | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| actions: write | |
| jobs: | |
| cache_actionlint: | |
| name: cache actionlint | |
| uses: ./.github/workflows/preload-caches-actionlint.yml |