Skip to content

Commit ecf2d3b

Browse files
authored
[PRM-392] Updated workflow references with new filenames (#432)
1 parent a0608fb commit ecf2d3b

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/automated-daily-health-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ jobs:
187187
if: always()
188188
name: Destroy the Sandbox Environment from previous job
189189
needs: [ 'set_workspace', 'deploy_ui', 'deploy_all_lambdas' ]
190-
uses: ./.github/workflows/terraform-destroy-environment-manual.yml
190+
uses: ./.github/workflows/tear-down-sandbox.yml
191191
with:
192192
build_branch: main
193193
environment: development

.github/workflows/automated-tear-down-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212
jobs:
1313
remove_edge_associations:
1414
name: Remove Lambda@Edge Associations
15-
uses: ./.github/workflows/cleanup-cloudfront-edge-associations.yml
15+
uses: ./.github/workflows/base-cleanup-lambda-edge.yml
1616
with:
1717
sandbox_workspace: ndr-test
1818
lambda_function_name: 'ndr-test_EdgePresignLambda'
@@ -24,7 +24,7 @@ jobs:
2424

2525
cleanup_versions_process:
2626
name: Cleanup Versions Process
27-
uses: ./.github/workflows/cleanup-appconfig-and-lambda-layer-versions.yml
27+
uses: ./.github/workflows/base-cleanup-workspace.yml
2828
with:
2929
build_branch: main
3030
sandbox: ndr-test

.github/workflows/tear-down-sandbox.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ permissions:
6060
jobs:
6161
remove_edge_associations:
6262
name: Remove Lambda@Edge Associations
63-
uses: ./.github/workflows/cleanup-cloudfront-edge-associations.yml
63+
uses: ./.github/workflows/base-cleanup-lambda-edge.yml
6464
with:
6565
sandbox_workspace: ${{ inputs.sandbox_workspace }}
6666
lambda_function_name: "${{ inputs.sandbox_workspace }}_EdgePresignLambda"
@@ -72,7 +72,7 @@ jobs:
7272

7373
cleanup_versions_process:
7474
name: Cleanup Versions Process
75-
uses: ./.github/workflows/cleanup-appconfig-and-lambda-layer-versions.yml
75+
uses: ./.github/workflows/base-cleanup-workspace.yml
7676
with:
7777
build_branch: ${{ inputs.build_branch }}
7878
sandbox: ${{ inputs.sandbox_workspace }}

scripts/cleanup_sandboxes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
def trigger_delete_workflow(token: str, sandbox: str):
77
owner = "nhsconnect"
88
repo = "national-document-repository-infrastructure"
9-
workflow = "terraform-destroy-environment-manual.yml"
9+
workflow = "tear-down-sandbox.yml"
1010

1111
url = f"https://api.github.com/repos/{owner}/{repo}/actions/workflows/{workflow}/dispatches"
1212
headers = {

0 commit comments

Comments
 (0)