Skip to content

Commit 7ac9b22

Browse files
committed
CCM-11908: Test
1 parent bedbdae commit 7ac9b22

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.github/workflows/pr_create_dynamic_env.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
permissions:
1616
id-token: write
1717
contents: read
18-
uses: ./.github/workflows/dispatch_internal_repo_workflow.yaml
18+
uses: ./.github/workflows/reusable_internal_repo_build.yaml
1919
secrets: inherit
2020
with:
2121
jobName: Sandbox set up

.github/workflows/pr_destroy_dynamic_env.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
permissions:
1515
id-token: write
1616
contents: read
17-
uses: ./.github/workflows/dispatch_internal_repo_workflow.yaml
17+
uses: ./.github/workflows/reusable_internal_repo_build.yaml
1818
secrets: inherit
1919
with:
2020
jobName: Sandbox set up

.github/workflows/reusable_internal_repo_build.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ on:
2929
type: string
3030
description: The Terraform component to deploy
3131
default: plan
32+
overrides:
33+
type: string
34+
description: Comma separated list of pipeline overrides in OVR_XXX=YYYY format
35+
default: ""
3236

3337
concurrency:
3438
group: ${{ inputs.targetEnvironment }}-${{ inputs.targetAccountGroup }}-${{ inputs.targetComponent }}-${{ inputs.terraformAction }}
@@ -55,13 +59,15 @@ jobs:
5559
--arg targetAccountGroup ${{ inputs.targetAccountGroup }} \
5660
--arg targetComponent ${{ inputs.targetComponent }} \
5761
--arg terraformAction ${{ inputs.terraformAction }} \
62+
--arg overrides ${{ inputs.overrides }} \
5863
'{ "ref": "main",
5964
"inputs": {
6065
"releaseVersion", $releaseVersion,
6166
"targetEnvironment", $targetEnvironment,
6267
"targetAccountGroup", $targetAccountGroup,
6368
"targetComponent", $targetComponent,
64-
"terraformAction", $terraformAction
69+
"terraformAction", $terraformAction,
70+
"overrides", $overrides
6571
}
6672
}')
6773

0 commit comments

Comments
 (0)