From 19665fcecf006014167fa27e4855ad4648246bc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= <1005065+DeepDiver1975@users.noreply.github.com> Date: Wed, 15 Jul 2026 10:28:06 +0200 Subject: [PATCH] ci: make ci.yml branch triggers self-referential MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit GitHub Actions runs the copy of ci.yml on the ref where the event fires and matches branches: against that same ref, so cross-branch entries never apply. Drop the inert master/7.3 entries from push on the 8.0 branch and quote 8.0 in pull_request; the filter now lists only 8.0. Co-Authored-By: Claude Opus 4.8 Signed-off-by: Thomas Müller <1005065+DeepDiver1975@users.noreply.github.com> --- .github/workflows/ci.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4987a2395..6cc22aa03 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,14 +3,12 @@ name: CI on: push: branches: - - master - '8.0' - - '7.3' tags: - '**' pull_request: branches: - - 8.0 + - '8.0' jobs: docs-build: