Cron #110521
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: Cron | |
| on: | |
| schedule: | |
| - cron: '2 * * * *' # At minute 2 past every hour | |
| jobs: | |
| generate-token-lists: | |
| # Required so the OIDC id-token can be minted on the reusable-workflow path: | |
| # for workflow_call the token permissions are capped by the caller. | |
| permissions: | |
| id-token: write | |
| contents: read | |
| uses: ./.github/workflows/generate-token-lists.yml | |
| with: | |
| environment: 'CI' | |
| secrets: inherit |