We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e235a0a commit 1b894fcCopy full SHA for 1b894fc
.github/workflows/infracost.yml
@@ -1,3 +1,4 @@
1
+name: Generate Infra cost report
2
on:
3
pull_request:
4
types: [opened, synchronize, closed]
@@ -28,7 +29,7 @@ jobs:
28
29
30
- name: Generate Infracost cost estimate baseline
31
run: |
- infracost breakdown --path=. \
32
+ infracost breakdown --path=terraform/ \
33
--format=json \
34
--out-file=/tmp/infracost-base.json
35
@@ -37,7 +38,7 @@ jobs:
37
38
39
- name: Generate Infracost diff
40
- infracost diff --path=. \
41
+ infracost diff --path=terraform/ \
42
43
--compare-to=/tmp/infracost-base.json \
44
--out-file=/tmp/infracost.json
0 commit comments