File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -88,14 +88,17 @@ jobs:
88
88
pull-requests : write
89
89
steps :
90
90
- name : Checkout
91
+ if : false
91
92
uses : actions/checkout@v4
92
93
93
94
- name : Download Configuration
95
+ if : false
94
96
uses : actions/download-artifact@v4
95
97
with :
96
98
name : database-config
97
99
98
100
- name : Upload Configuration
101
+ if : false
99
102
uses : hashicorp/tfc-workflows-github/actions/upload-configuration@v1.3.1
100
103
id : plan-upload
101
104
with :
@@ -104,6 +107,7 @@ jobs:
104
107
speculative : true
105
108
106
109
- name : Create Plan Run
110
+ if : false
107
111
uses : hashicorp/tfc-workflows-github/actions/create-run@v1.3.1
108
112
id : plan-run
109
113
with :
@@ -112,12 +116,14 @@ jobs:
112
116
plan_only : true
113
117
114
118
- name : Get Plan Output
119
+ if : false
115
120
uses : hashicorp/tfc-workflows-github/actions/plan-output@v1.3.1
116
121
id : plan-output
117
122
with :
118
123
plan : ${{ fromJSON(steps.plan-run.outputs.payload).data.relationships.plan.data.id }}
119
124
120
125
- name : Update PR
126
+ if : false
121
127
uses : actions/github-script@v7
122
128
id : plan-comment
123
129
with :
@@ -173,7 +179,7 @@ jobs:
173
179
- name : " v3"
174
180
continue-on-error : true
175
181
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')
177
183
echo "$vpc_id2"
178
184
179
185
- name : " v4"
@@ -185,7 +191,7 @@ jobs:
185
191
- name : " v5"
186
192
continue-on-error : true
187
193
run : |
188
- echo { "name": "John" } | jq -r '.[] | select(.name == "John") | .name'
194
+ echo ${{ toJson(steps.output.outputs.outputs) }}
189
195
190
196
191
197
You can’t perform that action at this time.
0 commit comments