Skip to content

Commit 638b64b

Browse files
committed
update pull_requests.yml
1 parent 8eac3c6 commit 638b64b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/pull_requests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,4 @@ jobs:
6666
wget -q https://releases.hashicorp.com/terraform/1.6.0/terraform_1.6.0_linux_amd64.zip
6767
unzip terraform_1.6.0_linux_amd64.zip -d /usr/local/bin/
6868
fi
69-
sh scripts/terraform-validate.sh CHANGED_FOLDERS=${CHANGED_FOLDERS}
69+
sh scripts/terraform-validate.sh ${CHANGED_FOLDERS}

scripts/terraform-validate.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
error=false
33

4-
folders=$CHANGED_FOLDERS
4+
folders=$1
55
for f in ${folders//,/ }
66
do
77
f=$(echo $f | xargs echo -n)

0 commit comments

Comments
 (0)