Skip to content

Commit aecec36

Browse files
committed
wip: Fix syntax in labeler workflow
1 parent 17f1961 commit aecec36

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/request-labeler.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ jobs:
2121
- name: Extract issue fields
2222
id: extract
2323
run: |
24-
instance_flavor = ${{ toJSON(steps.parse.outputs.data) }} | \
25-
jq .instance-flavor.text
24+
instance_flavor = $(echo ${{ toJSON(steps.parse.outputs.data) }} | \
25+
jq '.instance-flavor.text')
2626
echo "instance_flavor [$instance_flavor]"
2727
echo "instance_flavor=$instance_flavor" >> $GITHUB_OUTPUT
2828

0 commit comments

Comments
 (0)