2e39fa4e-d26c-44bf-a22e-37fe250b0112 #18
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: 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: true | |
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 }} |