From c1e78439995f99d7a5a6217ab2fc579c34e56f1b Mon Sep 17 00:00:00 2001 From: Sam C <156680559+sam-c-dfe@users.noreply.github.com> Date: Thu, 31 Oct 2024 14:52:14 +0000 Subject: [PATCH] Updated TF path in the apply step. Added the action to the run-name so we can see what option was selected for the run (#441) --- .github/workflows/tf-azure-deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tf-azure-deploy.yml b/.github/workflows/tf-azure-deploy.yml index 29edc345..98acdbd6 100644 --- a/.github/workflows/tf-azure-deploy.yml +++ b/.github/workflows/tf-azure-deploy.yml @@ -1,4 +1,4 @@ -run-name: 'Terraform Deploy - ${{inputs.environment}}' +run-name: 'Terraform Deploy - ${{inputs.environment}} (${{inputs.action}})' name: 'Terraform Deploy' on: @@ -121,4 +121,4 @@ jobs: # Terraform Apply - name: Terraform Apply if: ${{ inputs.action == 'Plan & Apply' }} - run: terraform apply -auto-approve tfplan/tfplan \ No newline at end of file + run: terraform apply -auto-approve tfplan \ No newline at end of file