From 3e799628c5104064fcda0861e252eb130a8b7785 Mon Sep 17 00:00:00 2001 From: Trezy Date: Tue, 26 May 2026 16:38:15 -0500 Subject: [PATCH] ci: prevent pr-builds from running when merging `dev` (taken care of by regular release process) Signed-off-by: Trezy --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e6ea1b3..65f7bb2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -169,6 +169,7 @@ jobs: needs: changes if: >- github.event_name == 'pull_request' + && github.head_ref != 'dev' && needs.changes.outputs.server == 'true' runs-on: ${{ matrix.runs-on }} strategy: -- 2.51.2