Follow up #6418
Fix get-issue-step in moving-cards.yml workflow Signed-off-by: Fran Mulero <fmulero@vmware.com>
This commit is contained in:
parent
13f4e46d45
commit
bd8c1b1057
|
|
@ -23,7 +23,7 @@ jobs:
|
|||
- name: Get issue info
|
||||
id: get-issue-step
|
||||
run: |
|
||||
issue_info=$(curl -s --header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' -X GET -G ${{ github.event.project_card.content_url }})
|
||||
issue_info=$(curl -s --header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' -X GET -G "${{ github.event.project_card.content_url }}" )
|
||||
assignees="$(echo $issue_info | jq -r '.assignees')"
|
||||
creator="$(echo $issue_info | jq -r '.user.login')"
|
||||
pull_request="$(echo $issue_info | jq -r '.pull_request' | )"
|
||||
|
|
@ -129,4 +129,4 @@ jobs:
|
|||
numOfAssignee: 1
|
||||
removePreviousAssignees: true
|
||||
teams: ${{ env.SUPPORT_TEAM_NAME }}
|
||||
repo-token: "${{ secrets.BITNAMI_BOT_TOKEN }}"
|
||||
repo-token: "${{ secrets.BITNAMI_BOT_TOKEN }}"
|
||||
|
|
|
|||
Loading…
Reference in New Issue