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) }}