From fd008727993a7721c78df3b8094ab1d3ff588afd Mon Sep 17 00:00:00 2001 From: Vitor Mattos <1079143+vitormattos@users.noreply.github.com> Date: Thu, 5 Feb 2026 10:45:11 -0300 Subject: [PATCH] fix: add support for stable branches in nightly-release workflow - Add wildcard pattern 'stable*' to trigger nightly releases on stable branches (stable32, stable33, etc.) - Maintains backward compatibility with main branch - Allows automated nightly builds for multiple Nextcloud versions Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com> --- .github/workflows/nightly-release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/nightly-release.yml b/.github/workflows/nightly-release.yml index 7db253514b..f1048af69a 100644 --- a/.github/workflows/nightly-release.yml +++ b/.github/workflows/nightly-release.yml @@ -7,6 +7,7 @@ on: push: branches: - main + - stable* paths-ignore: - '**.md' - '.github/**'