From 96fe74c1f166abc23607a77193c1a38cdf037f50 Mon Sep 17 00:00:00 2001 From: Milorad Jovanovic Date: Thu, 27 Mar 2025 15:55:10 +0000 Subject: [PATCH] OCMP-0 adding velocity action --- action.yml | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 action.yml diff --git a/action.yml b/action.yml new file mode 100644 index 0000000..13429e9 --- /dev/null +++ b/action.yml @@ -0,0 +1,47 @@ +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: + description: "Repository name (mandatory)" + required: true + sha: + description: "Optional commit SHA" + required: false + env: + description: "Optional environment. Set to 'dev' for development; defaults to production." + required: false + default: "prod" + token: + description: "Bearer token for Authorization header (mandatory)" + required: true + +runs: + using: "composite" + steps: + - name: Determine API Domain + shell: bash + run: | + if [ "${{ inputs.env }}" = "dev" ]; then + VELOCITY_API_DOMAIN="dev-api.ocamba.com" + else + VELOCITY_API_DOMAIN="api.ocamba.com" + fi + + # Export API_DOMAIN so it's available in subsequent steps + echo "VELOCITY_API_DOMAIN=$VELOCITY_API_DOMAIN" >> $GITHUB_ENV + + - name: Call Ocamba Velocity Integration API + shell: bash + run: | + URL="https://${VELOCITY_API_DOMAIN}/v1/velocity/integration?owner=${{ inputs.owner }}&repo=${{ inputs.repo }}" + + # Append sha parameter if provided + if [ -n "${{ inputs.sha }}" ]; then + URL="${URL}&sha=${{ inputs.sha }}" + fi + + curl -X GET "${URL}" -H "Authorization: Bearer ${{ inputs.token }}"