From 99bfacf265b585a3158bdadc849af71233d9b1c1 Mon Sep 17 00:00:00 2001 From: Martin Milata Date: Thu, 27 Feb 2025 17:25:55 +0100 Subject: [PATCH] ci: fix release commit message check --- .github/workflows/prebuild.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/prebuild.yml b/.github/workflows/prebuild.yml index 7a9aa2ab79..453fa41a3c 100644 --- a/.github/workflows/prebuild.yml +++ b/.github/workflows/prebuild.yml @@ -83,7 +83,7 @@ jobs: # Checking the format of release commit messages. release_commit_msg_check: name: Release commit message check - if: ${{ startsWith(github.ref, 'refs/tags/release/') && github.repository == 'trezor/trezor-firmware' }} + if: ${{ startsWith(github.ref, 'refs/heads/release/') && github.repository == 'trezor/trezor-firmware' }} runs-on: ubuntu-latest steps: - uses: actions/checkout@v4