gha: ci-on-push: Adapt chained jobs to workflow_run

As we're using the `workflow_run` event, the checkout action would
pull the **current target branch** instead of the PR one.

Signed-off-by: Fabiano Fidêncio <fabiano.fidencio@intel.com>
This commit is contained in:
Fabiano Fidêncio
2023-04-05 10:33:47 +02:00
parent 3a760a157a
commit 7855b43062
8 changed files with 48 additions and 0 deletions

View File

@@ -2,6 +2,10 @@ name: CI | Run kubernetes tests on AKS
on:
workflow_call:
inputs:
checkout-ref:
required: false
type: string
default: ${{ github.sha }}
registry:
required: true
type: string
@@ -35,6 +39,8 @@ jobs:
needs: create-aks
steps:
- uses: actions/checkout@v3
with:
ref: ${{ inputs.checkout-ref }}
- name: Install `bats`
run: |
sudo apt-get update