Skip to content

Commit 15b91fa

Browse files
pannagoclaude
andauthored
fix: remove double suffix from default runner in image-multiarch workflow (#215)
## Summary Fixes the double suffix issue in the `image-multiarch.yaml` reusable workflow. ## Problem The default `runner` input parameter had a double suffix: ```yaml default: "ci-base-scale-set-scale-set" ``` This caused all repositories using this reusable workflow with the default runner to get an incorrect runner name with double `-scale-set` suffix. ## Solution Changed the default value to: ```yaml default: "ci-base-scale-set" ``` ## Impact This affects all repositories that use `Typeform/.github/.github/workflows/image-multiarch.yaml@refs/tags/v1` (or any other tag/ref) without explicitly specifying the `runner` input parameter. After this fix is merged and a new tag is created, repositories should update their workflow references to use the new tag. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent bc114d9 commit 15b91fa

7 files changed

Lines changed: 9 additions & 9 deletions

.github/workflows/deep-purple-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
description: "Self-hosted GHA runner"
1717
type: string
1818
required: false
19-
default: "ci-universal-scale-set-scale-set"
19+
default: "ci-universal-scale-set"
2020

2121
jobs:
2222
run-deep-purple-tests:

.github/workflows/frontend-deploy-workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ on:
3838
runner:
3939
description: 'Runner for build/deploy jobs'
4040
type: string
41-
default: '["ci-universal-scale-set-scale-set"]'
41+
default: '["ci-universal-scale-set"]'
4242
e2e-runner:
4343
description: 'Runner for E2E/integration tests'
4444
type: string
45-
default: '["ci-e2e-scale-set-scale-set"]'
45+
default: '["ci-e2e-scale-set"]'
4646

4747
# Build configuration
4848
pre-build-command:

.github/workflows/frontend-library-pr-release-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
runner:
1414
description: 'Runner to use'
1515
type: string
16-
default: '["ci-universal-scale-set-scale-set"]'
16+
default: '["ci-universal-scale-set"]'
1717

1818
# Commands
1919
lint-command:

.github/workflows/frontend-pr-workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ on:
5151
runner:
5252
description: 'Runner for build/deploy jobs'
5353
type: string
54-
default: '[ci-universal-scale-set-scale-set]'
54+
default: '[ci-universal-scale-set]'
5555
e2e-runner:
5656
description: 'Runner for E2E/integration tests'
5757
type: string
58-
default: '[ci-e2e-scale-set-scale-set]'
58+
default: '[ci-e2e-scale-set]'
5959

6060
# Build configuration
6161
pre-build-command:

.github/workflows/graphql-generate-persisted-operations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
description: "Self-hosted GHA runner"
88
type: string
99
required: false
10-
default: "ci-universal-scale-set-scale-set"
10+
default: "ci-universal-scale-set"
1111
secrets:
1212
GH_TOKEN:
1313
required: true

.github/workflows/image-multiarch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ on:
4949
description: "Self-hosted GHA runner"
5050
type: string
5151
required: false
52-
default: "ci-base-scale-set-scale-set"
52+
default: "ci-base-scale-set"
5353
env:
5454
VERSION_PREFIX: ''
5555
VERSION_LATEST: latest

.github/workflows/sonarcloud-scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ on:
3131
runner:
3232
description: 'Runner for SonarCloud scan'
3333
type: string
34-
default: '[ci-universal-scale-set-scale-set]'
34+
default: '[ci-universal-scale-set]'
3535

3636
# Coverage configuration
3737
coverage-artifact-name:

0 commit comments

Comments
 (0)