From 34ba54057f6052b2c3f707111146eb7910342e9a Mon Sep 17 00:00:00 2001 From: Patrick Schaper Date: Fri, 22 May 2026 09:40:03 +0200 Subject: [PATCH] fix: trigger checks on release branch push - add release/** to push triggers in tests.yml and commitlint.yml - PRs created by GITHUB_TOKEN don't fire pull_request events - push trigger ensures checks run on the release branch SHA Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/commitlint.yml | 3 +++ .github/workflows/tests.yml | 1 + 2 files changed, 4 insertions(+) diff --git a/.github/workflows/commitlint.yml b/.github/workflows/commitlint.yml index b23f498..58ee3cb 100644 --- a/.github/workflows/commitlint.yml +++ b/.github/workflows/commitlint.yml @@ -1,6 +1,9 @@ name: Commitlint on: + push: + branches: + - 'release/**' pull_request: branches: - main diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index daca352..a986890 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,6 +9,7 @@ on: - development - 'feat/**' - 'fix/**' + - 'release/**' pull_request: branches: - development