Nightly Run Jobs #118
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: Nightly Run Jobs | |
on: | |
schedule: | |
- cron: '0 0 * * *' # Runs every day at midnight UTC | |
workflow_dispatch: | |
jobs: | |
run: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Nightly Run File Verification Workflow | |
uses: benc-uk/workflow-dispatch@v1 | |
with: | |
workflow: file_verification.yml | |
ref: main | |
token: ${{ secrets.GITHUB_TOKEN }} |