Skip to content

Commit

Permalink
wip: Fix syntax in labeler workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jcfr committed Mar 28, 2024
1 parent 17f1961 commit f0ed0a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/request-labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
- name: Extract issue fields
id: extract
run: |
instance_flavor = ${{ toJSON(steps.parse.outputs.data) }} | \
jq .instance-flavor.text
instance_flavor = $(echo ${{ toJSON(steps.parse.outputs.data) }} | \
jq '."instance-flavor".text' | sed 's/ -.*$//')
echo "instance_flavor [$instance_flavor]"
echo "instance_flavor=$instance_flavor" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit f0ed0a7

Please sign in to comment.