Skip to content

Commit

Permalink
fix(repository-dispatch-notify): dont escape inputs (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
remdub authored Nov 14, 2024
1 parent f144f28 commit 3531a5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repository-dispatch-notify/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ runs:
-H "Authorization: Bearer ${{ steps.app-token.outputs.token }}" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/${{ inputs.REPOSITORY_OWNER}}/${{ inputs.REPOSITORY }}/actions/workflows/${{ inputs.WORKFLOW_FILENAME }}/dispatches \
-d '{"ref": "${{ inputs.GIT_REFERENCE }}", "inputs": "${{ inputs.INPUTS }}" }'
-d '{"ref": "${{ inputs.GIT_REFERENCE }}", "inputs": ${{ inputs.INPUTS }} }'
shell: bash
- name : Send notification on Mattermost
if: ${{ inputs.MATTERMOST_WEBHOOK_URL != '' }}
Expand Down

0 comments on commit 3531a5a

Please sign in to comment.