Skip to content

Commit aaa3185

Browse files
authored
fix(ci): restore checkout guard in docker.build workflow (#527)
Bug: T416559
1 parent 215d844 commit aaa3185

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/docker.build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,14 @@ jobs:
5757
labels: ${{ steps.docker_meta.outputs.labels }}
5858
-
5959
name: Check out `wmde/wbaas-deploy` repository in staging child directory
60-
if: steps.update-check.outputs.match == 'true'
60+
if: github.event_name != 'pull_request'
6161
uses: actions/checkout@v4.1.0
6262
with:
6363
repository: wmde/wbaas-deploy
6464
path: ./repos/wbaas-deploy-staging
6565
-
6666
name: Check out `wmde/wbaas-deploy` repository in production child directory
67-
if: steps.update-check.outputs.match == 'true'
67+
if: github.event_name != 'pull_request'
6868
uses: actions/checkout@v4.1.0
6969
with:
7070
repository: wmde/wbaas-deploy

0 commit comments

Comments
 (0)