From a3ad3623f9a14bf9cc3ce2a2065230c9bd0259a7 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:27:30 +0200 Subject: [PATCH] ci: fix ci.yml branch triggers on 8.1 branch MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The 8.1 ci.yml was copied from master without adjusting its triggers: pull_request.branches pointed at master and push.branches omitted 8.1, so PRs against 8.1 and pushes to 8.1 never built the docs. GitHub matches branches: against the ref the event fires on, so the filter must name 8.1. Make both push and pull_request self-referential to 8.1. Co-Authored-By: Claude Opus 4.8 Signed-off-by: Thomas Müller <1005065+DeepDiver1975@users.noreply.github.com> --- .github/workflows/ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9ce9d2af9..0dc215041 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' + - '8.1' tags: - '**' pull_request: branches: - - master + - '8.1' jobs: docs-build: