OCMP-5019
This commit is contained in:
parent
089fdf9427
commit
f1f27846b1
13
action.yml
13
action.yml
@ -34,11 +34,16 @@ runs:
|
|||||||
- name: Call Ocamba Velocity Integration API
|
- name: Call Ocamba Velocity Integration API
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
URL="https://${VELOCITY_API_DOMAIN}/v1/velocity/integration?repo_name=${{ inputs.repo_name }}"
|
|
||||||
|
|
||||||
# Append sha parameter if provided
|
BODY="{\"repo_name\": \"${{ inputs.repo_name }}\""
|
||||||
|
|
||||||
if [ -n "${{ inputs.sha }}" ]; then
|
if [ -n "${{ inputs.sha }}" ]; then
|
||||||
URL="${URL}&sha=${{ inputs.sha }}"
|
BODY="${BODY}, \"sha\": \"${{ inputs.sha }}\""
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
BODY="${BODY}}"
|
||||||
|
|
||||||
curl -X GET "${URL}" -H "Authorization: Bearer ${{ inputs.token }}"
|
curl -X POST "https://${VELOCITY_API_DOMAIN}/v1/velocity/integration" \
|
||||||
|
-H "Authorization: Bearer ${{ inputs.token }}" \
|
||||||
|
-H "Content-Type: application/json" \
|
||||||
|
-d "$BODY"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user