use hubverse-formatted target data for forecasts #21
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 Site" | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| publish: | |
| description: "Push Data to branch (uncheck for a dry run)" | |
| type: boolean | |
| required: false | |
| default: true | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: write | |
| jobs: | |
| site: | |
| uses: hubverse-org/hub-dashboard-control-room/.github/workflows/generate-site.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' | |
| publish: ${{ inputs.publish || github.event_name == 'push'}} | |
| secrets: | |
| id: 'none' | |
| key: ${{ secrets.GITHUB_TOKEN }} |