update predevals-config.yml to support multiple rounds by adding a rounds_idx configuration property #38
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 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 }} |