diff --git a/action.yml b/action.yml index 13429e9..5291c12 100644 --- a/action.yml +++ b/action.yml @@ -2,10 +2,7 @@ name: "Ocamba Velocity Integration API Caller" description: "Calls the Ocamba Velocity Integration API with the required parameters." inputs: - owner: - description: "Repository owner (mandatory)" - required: true - repo: + repo_name: description: "Repository name (mandatory)" required: true sha: @@ -37,7 +34,7 @@ runs: - name: Call Ocamba Velocity Integration API shell: bash run: | - URL="https://${VELOCITY_API_DOMAIN}/v1/velocity/integration?owner=${{ inputs.owner }}&repo=${{ inputs.repo }}" + URL="https://${VELOCITY_API_DOMAIN}/v1/velocity/integration?repo_name=${{ inputs.repo_name }}" # Append sha parameter if provided if [ -n "${{ inputs.sha }}" ]; then