Skip to content

Commit 0668c7c

Browse files
authored
feat: configurable runner for ci-standard-checks (#220)
1 parent 637422f commit 0668c7c

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/ci-standard-checks-workflow.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,15 @@ on:
1818
required: false
1919
default: false
2020
description: 'whether to use Typeform/ci-standard-checks@v1-beta'
21+
runner:
22+
description: "Self-hosted GHA runner"
23+
type: string
24+
required: false
25+
default: "ci-base-scale-set"
2126

2227
jobs:
2328
ci-standard-checks:
24-
runs-on: 'ubuntu-latest'
29+
runs-on: [ "${{ inputs.runner }}" ]
2530
steps:
2631
- name: Check Out Source Code
2732
uses: actions/checkout@v6

.github/workflows/test-ci-standard-checks-workflow.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ on:
77
jobs:
88
test-ci-standard-checks:
99
uses: ./.github/workflows/ci-standard-checks-workflow.yaml
10+
with:
11+
runner: "ubuntu-latest"

0 commit comments

Comments
 (0)