From fc3e4b1cce998eaf0e422be3efaf15d53732799a Mon Sep 17 00:00:00 2001 From: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com> Date: Fri, 17 Feb 2023 03:47:29 +0000 Subject: [PATCH] Fixes Signed-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com> --- .github/workflows/certification.yml | 8 ++++++++ .github/workflows/conformance.yml | 8 +++++++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/.github/workflows/certification.yml b/.github/workflows/certification.yml index b42bd96a9..9f0270bb0 100644 --- a/.github/workflows/certification.yml +++ b/.github/workflows/certification.yml @@ -24,6 +24,8 @@ on: - 'release-*' pull_request: branches: + # TODO: REMOVE "master" BEFORE MERGING + - 'master' - 'release-*' env: @@ -46,6 +48,12 @@ jobs: echo "PR_NUMBER=${{ github.event.client_payload.issue.number }}" >> $GITHUB_ENV fi + - name: Check out code + uses: actions/checkout@v3 + with: + repository: ${{ env.CHECKOUT_REPO }} + ref: ${{ env.CHECKOUT_REF }} + - name: Generate test matrix id: generate-matrix env: diff --git a/.github/workflows/conformance.yml b/.github/workflows/conformance.yml index 78fe68918..1848ff2d5 100644 --- a/.github/workflows/conformance.yml +++ b/.github/workflows/conformance.yml @@ -22,7 +22,7 @@ on: - cron: '0 */8 * * *' push: branches: - - 'release-*' + - 'release-*' pull_request: branches: - 'master' @@ -48,6 +48,12 @@ jobs: echo "PR_NUMBER=${{ github.event.client_payload.issue.number }}" >> $GITHUB_ENV fi + - name: Check out code + uses: actions/checkout@v3 + with: + repository: ${{ env.CHECKOUT_REPO }} + ref: ${{ env.CHECKOUT_REF }} + - name: Generate test matrix id: generate-matrix env: