From ab2f14ea64aa298706d449c0c3536ad29bcfbf66 Mon Sep 17 00:00:00 2001 From: Fran Mulero Date: Wed, 14 Sep 2022 13:06:33 +0200 Subject: [PATCH] Fix wrong indentation Signed-off-by: Fran Mulero --- .github/workflows/fmulero-test.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/fmulero-test.yml b/.github/workflows/fmulero-test.yml index b9555d87ab73..78a95579aae7 100644 --- a/.github/workflows/fmulero-test.yml +++ b/.github/workflows/fmulero-test.yml @@ -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) }}