Skip to content

43c7b50e-3566-4aa9-a330-40029891b965 #34

43c7b50e-3566-4aa9-a330-40029891b965

43c7b50e-3566-4aa9-a330-40029891b965 #34

Workflow file for this run

name: Run PR
run-name: ${{ inputs.id }}
on:
workflow_dispatch:
inputs:
id:
required: true
type: string
description: The run ID
repository:
required: true
type: string
description: The repository to run for
pr:
required: true
type: number
description: The PR number
command1:
required: true
type: string
description: The first command to run
command2:
required: false
type: string
description: The second command to run
upload:
required: true
type: string
description: The file pattern to upload
jobs:
run:
uses: neoforged/practionrunner/.github/workflows/run_pr_delegate.yml@main
with:
repository: ${{ inputs.repository }}
pr: ${{ inputs.pr }}
command1: ${{ inputs.command1 }}
command2: ${{ inputs.command2 }}
upload: ${{ inputs.upload }}