When I import audio data using s3, an error occurs, and the displayed URL is in base64 format. #77
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "ZenDesk: Create a zendesk ticket out of an issue" | |
on: | |
issues: | |
types: | |
- opened | |
jobs: | |
issue_created: | |
name: Issue created | |
runs-on: ubuntu-latest | |
steps: | |
- uses: hmarr/[email protected] | |
- env: | |
ZENDESK_HOST: ${{ vars.ZENDESK_HOST }} | |
ZENDESK_USER: ${{ vars.ZENDESK_USER }} | |
ZENDESK_TOKEN: ${{ secrets.ZENDESK_TOKEN }} | |
ISSUE_TITLE: ${{ github.event.issue.title }} | |
ISSUE_BODY: ${{ github.event.issue.body }} | |
ISSUE_USER: ${{ github.event.issue.user.login }} | |
ISSUE_URL: ${{ github.event.issue.html_url }} | |
WORKFLOW_RUN_LINK: "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" | |
run: | | |
body=$(jq -n --arg body "$ISSUE_BODY" '{body: $body}' | jq .body) | |
echo "$body" | |
curl https://${ZENDESK_HOST}/api/v2/tickets \ | |
--request POST \ | |
--user "${ZENDESK_USER}/token:${ZENDESK_TOKEN}" \ | |
--header "Content-Type: application/json" \ | |
--data-binary @- <<DATA | |
{ | |
"ticket": { | |
"subject": "Github_Issue: $ISSUE_TITLE", | |
"comment": { | |
"body": "[GITHUB_ISSUE_DESCRIPTION]\n\n${body:1:-1}\n\nGITHUB ISSUE URL: ${ISSUE_URL}\nWORKFLOW RUN: ${WORKFLOW_RUN_LINK}" | |
}, | |
"tags": ["gh-issue"], | |
"external_id": "$ISSUE_URL", | |
"requester": { | |
"locale_id": 1, | |
"name": "$ISSUE_USER from Github", | |
"email": "[email protected]" | |
} | |
} | |
} | |
DATA |