From 82eec358bf0e38963e30049bb464127a0cb97275 Mon Sep 17 00:00:00 2001 From: Nicolas Duchon Date: Sat, 22 Feb 2025 14:28:06 +0100 Subject: [PATCH] ci: disable scheduled build/push on forks --- .github/workflows/build-publish.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build-publish.yml b/.github/workflows/build-publish.yml index b714de7..ae763b6 100644 --- a/.github/workflows/build-publish.yml +++ b/.github/workflows/build-publish.yml @@ -25,6 +25,7 @@ jobs: matrix: base: [alpine, debian] runs-on: ubuntu-latest + if: (github.event_name == "schedule" && github.repository == "nginx-proxy/nginx-proxy") || (github.event_name != "schedule") steps: - name: Checkout uses: actions/checkout@v4