Manually generate report #32
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: Manually generate report | |
on: | |
workflow_dispatch: | |
inputs: | |
project: | |
description: Hydra project | |
required: true | |
type: string | |
jobset: | |
description: Hydra jobset for project | |
required: true | |
type: string | |
nuke-cache: | |
description: Delete the build report cache for the jobset before report generation | |
type: boolean | |
required: true | |
default: false | |
jobs: | |
gen-report: | |
name: ${{ github.event.inputs.project }}:${{ github.event.inputs.jobset }} | |
uses: ./.github/workflows/gen-report.yml | |
with: | |
project: ${{ github.event.inputs.project }} | |
jobset: ${{ github.event.inputs.jobset }} | |
nuke-cache: ${{ github.event.inputs.nuke-cache }} |