Skip to content

Commit 7d32274

Browse files
committed
faster
1 parent d055297 commit 7d32274

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/terraform.yaml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,14 +88,17 @@ jobs:
8888
pull-requests: write
8989
steps:
9090
- name: Checkout
91+
if: false
9192
uses: actions/checkout@v4
9293

9394
- name: Download Configuration
95+
if: false
9496
uses: actions/download-artifact@v4
9597
with:
9698
name: database-config
9799

98100
- name: Upload Configuration
101+
if: false
99102
uses: hashicorp/tfc-workflows-github/actions/upload-configuration@v1.3.1
100103
id: plan-upload
101104
with:
@@ -104,6 +107,7 @@ jobs:
104107
speculative: true
105108

106109
- name: Create Plan Run
110+
if: false
107111
uses: hashicorp/tfc-workflows-github/actions/create-run@v1.3.1
108112
id: plan-run
109113
with:
@@ -112,12 +116,14 @@ jobs:
112116
plan_only: true
113117

114118
- name: Get Plan Output
119+
if: false
115120
uses: hashicorp/tfc-workflows-github/actions/plan-output@v1.3.1
116121
id: plan-output
117122
with:
118123
plan: ${{ fromJSON(steps.plan-run.outputs.payload).data.relationships.plan.data.id }}
119124

120125
- name: Update PR
126+
if: false
121127
uses: actions/github-script@v7
122128
id: plan-comment
123129
with:
@@ -173,7 +179,7 @@ jobs:
173179
- name: "v3"
174180
continue-on-error: true
175181
run: |
176-
vpc_id2=$(echo "${{ toJson(steps.output.outputs.outputs) }}" | jq -r '.[] | select(.name == "vpc_id") | .value')
182+
vpc_id2=$(echo ${{ toJson(steps.output.outputs.outputs) }} | jq -r '.[] | select(.name == "vpc_id") | .value')
177183
echo "$vpc_id2"
178184
179185
- name: "v4"
@@ -185,7 +191,7 @@ jobs:
185191
- name: "v5"
186192
continue-on-error: true
187193
run: |
188-
echo { "name": "John" } | jq -r '.[] | select(.name == "John") | .name'
194+
echo ${{ toJson(steps.output.outputs.outputs) }}
189195
190196
191197

0 commit comments

Comments
 (0)