Skip to content

Commit 51192ea

Browse files
committed
ci(terraform): Fix file search pattern
Only look for tf, tfvars or tftpl files
1 parent 9cd450e commit 51192ea

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/terraform-ci.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,10 @@ jobs:
3939
with:
4040
dir_names: true
4141
dir_names_max_depth: 3
42-
files: terraform/**
42+
files: |
43+
terraform/**/*.tf
44+
terraform/**/*.tfvars
45+
terraform/**/*.tftpl
4346
matrix: true
4447

4548
terraform-deploy:

0 commit comments

Comments
 (0)