Culprit Finder Workflow #20
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: Culprit Finder Workflow | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| inputs: | |
| workflow-to-debug: | |
| description: "Which workflow should be run?" | |
| type: string | |
| default: "" | |
| required: true | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
| permissions: {} | |
| jobs: | |
| bisect-hello-world: | |
| if: ${{ inputs.workflow-to-debug == 'hello_world.yml' }} | |
| uses: ./.github/workflows/hello_world.yml | |
| name: Bisect Hello World |