From bcfa64b2c3335369575bad81241a3e2cab0f09d8 Mon Sep 17 00:00:00 2001 From: Viren070 Date: Sat, 26 Jul 2025 16:07:33 +0100 Subject: [PATCH] ci: don't trigger nightly builds on stable releases --- .github/workflows/nightly.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 42083574..f9f5fdad 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -14,7 +14,7 @@ on: jobs: release: name: release - if: ${{ github.ref == 'refs/heads/main' }} + if: ${{ github.ref == 'refs/heads/main' && !contains(github.event.head_commit.message, 'chore: release') }} runs-on: ubuntu-latest permissions: actions: write