From 9b7648e7c98378a07552b941b6a189fab9058e68 Mon Sep 17 00:00:00 2001 From: Richard Hruza Date: Mon, 9 Mar 2026 16:11:57 +0100 Subject: [PATCH] Test Pipeline --- .github/workflows/pr.yml | 34 +++++++++++++++++++++++++++------- 1 file changed, 27 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index e5b40ea..f45370b 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -7,10 +7,30 @@ on: paths-ignore: - '**/README.md' jobs: - run_pr-template: - name: PR - Build and Deploy - uses: SecureApiGateway/secure-api-gateway-ci/.github/workflows/reusable-pr.yml@main - secrets: inherit - with: - componentName: secure-api-gateway-functional-test-framework - dockerTag: pr-${{ github.event.number }} \ No newline at end of file + build: + runs-on: ubuntu-22.04 + steps: + # Checkout CI Repo + - name: Checkout CI Repo + uses: actions/checkout@v4 + with: + path: secure-api-gateway-ci + repository: SecureApiGateway/secure-api-gateway-ci + # Auth GCP + - name: Call Authentication + uses: ./secure-api-gateway-ci/.github/actions/authentication + with: + gcpKey: ${{ secrets.GCP_SECRET_READ }} + garLocation: ${{ vars.GAR_LOCATION }} + # Get Username + - name: Get Username + run: gcloud auth list + + +# run_pr-template: +# name: PR - Build and Deploy +# uses: SecureApiGateway/secure-api-gateway-ci/.github/workflows/reusable-pr.yml@main +# secrets: inherit +# with: +# componentName: secure-api-gateway-functional-test-framework +# dockerTag: pr-${{ github.event.number }} \ No newline at end of file