From 653e3efeb0e72d19b362902fcd52a44c9d86902a Mon Sep 17 00:00:00 2001 From: Dat Date: Thu, 12 Feb 2026 13:45:29 +0100 Subject: [PATCH] fix(ci): restore checkout guard in docker.build workflow Bug: T416559 --- .github/workflows/docker.build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker.build.yml b/.github/workflows/docker.build.yml index e9efe2e61..636bd9271 100644 --- a/.github/workflows/docker.build.yml +++ b/.github/workflows/docker.build.yml @@ -57,14 +57,14 @@ jobs: labels: ${{ steps.docker_meta.outputs.labels }} - name: Check out `wmde/wbaas-deploy` repository in staging child directory - if: steps.update-check.outputs.match == 'true' + if: github.event_name != 'pull_request' uses: actions/checkout@v4.1.0 with: repository: wmde/wbaas-deploy path: ./repos/wbaas-deploy-staging - name: Check out `wmde/wbaas-deploy` repository in production child directory - if: steps.update-check.outputs.match == 'true' + if: github.event_name != 'pull_request' uses: actions/checkout@v4.1.0 with: repository: wmde/wbaas-deploy