Skip to content

Culprit Finder Workflow #20

Culprit Finder Workflow

Culprit Finder Workflow #20

Workflow file for this run

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