Skip to content

Commit d6da5d5

Browse files
aidenvaines-cgimasl2m-houston
authored
CCM-10160 minor fixes to workflows and precommits (#157)
Co-authored-by: Mark Slowey <[email protected]> Co-authored-by: Mike Houston <[email protected]> Co-authored-by: Mike Houston <[email protected]>
1 parent c10899c commit d6da5d5

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.github/workflows/pr_closed.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ jobs:
6161
--targetEnvironment "main" \
6262
--targetAccountGroup "nhs-notify-supplier-api-dev" \
6363
--targetComponent "${{ matrix.component }}" \
64-
--terraformAction "apply"
64+
--terraformAction "apply" \
65+
--overrideProjectName "nhs" \
66+
--overrideRoleName "nhs-main-acct-supplier-api-github-deploy"
6567
6668
check-event-schemas-version-change:
6769
name: Check for event schemas package version change

.github/workflows/release_created.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,6 @@ jobs:
3737
--targetEnvironment "main" \
3838
--targetAccountGroup "nhs-notify-supplier-api-nonprod" \
3939
--targetComponent "${{ matrix.component }}" \
40-
--terraformAction "apply"
40+
--terraformAction "apply" \
41+
--overrideProjectName "nhs" \
42+
--overrideRoleName "nhs-main-acct-supplier-api-github-deploy"

scripts/init.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ _install-dependency: # Install asdf dependency - mandatory: name=[listed in the
4646
asdf install ${name} $(or ${version},)
4747

4848
_install-dependencies: # Install all the dependencies listed in .tool-versions
49-
for plugin in $$(grep ^[a-z] .tool-versions | sed 's/[[:space:]].*//'); do
50-
make _install-dependency name="$${plugin}"
49+
for plugin in $$(grep '^[a-z]' .tool-versions | cut -f1 -d' '); do \
50+
echo "Installing $${plugin}..."; \
5151
done
5252

5353
clean:: # Remove all generated and temporary files (common) @Operations

0 commit comments

Comments
 (0)