-
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (33 loc) · 1.06 KB
/
run_pr.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Run PR
on:
workflow_dispatch:
inputs:
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 }}