From af7c1d02fd3c379bbd1ef28c2f33c0440d72310c Mon Sep 17 00:00:00 2001 From: Arya Rizky Date: Mon, 18 May 2026 16:10:57 +0700 Subject: [PATCH] fix(ci): skip helm-release workflow on forks The helm-release workflow fails on forks because they don't have a gh-pages branch set up for Helm chart publication. Add a conditional check to only run this workflow on the upstream nextcloud/all-in-one repository. Fixes #8128 --- .github/workflows/helm-release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/helm-release.yml b/.github/workflows/helm-release.yml index 43f98a53..7a7688be 100644 --- a/.github/workflows/helm-release.yml +++ b/.github/workflows/helm-release.yml @@ -10,6 +10,7 @@ on: jobs: release: + if: github.repository == 'nextcloud/all-in-one' runs-on: ubuntu-latest steps: - name: Checkout