Add 2025-26 CA only eval set #103
Workflow file for this run
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: "Rebuild Data" | |
| on: | |
| schedule: | |
| - cron: "33 17 * * 4" # every Thursday at 5:33PM UTC == 12:33PM EST | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| paths: | |
| - predtimechart-config.yml | |
| - predevals-config.yml | |
| workflow_dispatch: | |
| inputs: | |
| regenerate: | |
| description: "(Forecast) Regenerate previously-recorded model output data?" | |
| type: boolean | |
| required: false | |
| default: false | |
| data: | |
| description: "(Forecast) Which forecast page data should be built?" | |
| type: choice | |
| options: | |
| - 'target' | |
| - 'forecast' | |
| - 'both' | |
| required: false | |
| default: 'both' | |
| publish: | |
| description: "Push Data to branch (uncheck for a dry run)" | |
| type: boolean | |
| required: false | |
| default: true | |
| permissions: | |
| contents: write | |
| jobs: | |
| site: | |
| uses: hubverse-org/hub-dashboard-control-room/.github/workflows/generate-data.yaml@main | |
| with: | |
| owner: '${{ github.event.repository.owner.login }}' | |
| name: '${{ github.event.repository.name }}' | |
| slug: '${{ github.event.repository.owner.login }}' | |
| email: '${{ github.event.repository.owner.id }}+${{ github.event.repository.owner.login }}@users.noreply.github.com' | |
| regenerate: ${{ inputs.regenerate || false }} | |
| build: ${{ inputs.data || 'both' }} | |
| publish: ${{ inputs.publish || github.event_name == 'schedule' || github.event_name == 'push' }} | |
| secrets: | |
| id: 'none' | |
| key: ${{ secrets.GITHUB_TOKEN }} |