Fix wrong indentation

Signed-off-by: Fran Mulero <fmulero@vmware.com>
This commit is contained in:
Fran Mulero
2022-09-14 13:06:33 +02:00
committed by GitHub
parent 77337600a2
commit ab2f14ea64

View File

@@ -16,13 +16,13 @@ jobs:
run: |
echo "$GITHUB_CONTEXT"
- name: Get issue info
id: get-issue
run: |
issue_info=$(curl -s --header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' -X GET -G ${{ github.project_card.content_url }})
assignees=$(echo $issue_info | jq -r '.assignees')
creator=$(echo $issue_info | jq -r '.user.login')
echo "::set-output name=assignees::${assignees}"
echo "::set-output name=creator::${creator}"
id: get-issue
run: |
issue_info=$(curl -s --header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' -X GET -G ${{ github.project_card.content_url }})
assignees=$(echo $issue_info | jq -r '.assignees')
creator=$(echo $issue_info | jq -r '.user.login')
echo "::set-output name=assignees::${assignees}"
echo "::set-output name=creator::${creator}"
- name: Dump getissue outputs
env:
ISSUE_OUTPUTS: ${{ toJson(steps.get-issue.outputs) }}