Skip to content

Commit 03bc3af

Browse files
ci: Update check labels to accept runner input (#320)
1 parent 19725c0 commit 03bc3af

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/check-labels.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,18 @@ name: Check labels
22

33
on:
44
workflow_call:
5+
inputs:
6+
runner:
7+
required: false
8+
type: string
9+
default: "ubuntu-latest"
510
secrets:
611
github-token:
712
required: true
813

914
jobs:
1015
main:
11-
runs-on: ubuntu-latest
16+
runs-on: ${{ inputs.runner }}
1217
steps:
1318
- name: Check Labels
1419
shell: python

0 commit comments

Comments
 (0)