From f6ab502a0e1a92722ab4deaf3be12de5fa86fb0e Mon Sep 17 00:00:00 2001 From: Lukas Waslowski Date: Thu, 23 May 2024 21:07:19 +0000 Subject: [PATCH] GitHub CI: Skip the manifest update job on forks --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 37cfa7809a0..e09a15cdec8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -481,7 +481,9 @@ jobs: needs: build # Always run this job, even if one or more jobs from the `build` jobs # fail to allow partial updates of the manifest. - if: always() + # Don't run it on forks that do not have access to our external + # infrastructure, though. + if: always() && github.repository == 'mixxxdj/mixxx' steps: - name: "Check out repository" uses: actions/checkout@v4.1.6