OCMP-5019

This commit is contained in:
Milorad Jovanovic 2025-04-03 12:35:00 +00:00
parent 089fdf9427
commit f1f27846b1

View File

@ -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
curl -X GET "${URL}" -H "Authorization: Bearer ${{ inputs.token }}" BODY="${BODY}}"
curl -X POST "https://${VELOCITY_API_DOMAIN}/v1/velocity/integration" \
-H "Authorization: Bearer ${{ inputs.token }}" \
-H "Content-Type: application/json" \
-d "$BODY"