From 3b14c1523467ecd6ce5c9223a9c6b3d596f65ba4 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:38 +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/8.0 entries from push on the 7.3 branch and quote 7.3 in pull_request; the filter now lists only 7.3. 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 1624219b9..0857d88ec 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: - - 7.3 + - '7.3' jobs: docs-build: