From 8d7b8d8196d703d0e06661d85ad0e68fa9897303 Mon Sep 17 00:00:00 2001 From: 0o-de-lally <1364012+0o-de-lally@users.noreply.github.com> Date: Sat, 3 Aug 2024 15:59:38 -0400 Subject: [PATCH] dont set msg env [breaking] --- .github/workflows/debug.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/debug.yaml b/.github/workflows/debug.yaml index 8e07b8aaf..05f3eeb42 100644 --- a/.github/workflows/debug.yaml +++ b/.github/workflows/debug.yaml @@ -44,7 +44,7 @@ jobs: echo LAST_COMMIT_MSG=${{github.event.head_commit.message}} >> ${GITHUB_ENV} echo LAST_COMMIT_MSG: ${{env.LAST_COMMIT_MSG}} echo contains breaking: ${{contains(env.LAST_COMMIT_MSG, '[breaking]')}} - echo "COMMIT_BREAKING=${{contains(env.LAST_COMMIT_MSG, '[breaking]')}}" >> ${GITHUB_ENV} + echo "COMMIT_BREAKING=${{contains(github.event.head_commit.message, '[breaking]')}}" >> ${GITHUB_ENV} echo github.head_ref: ${{ github.head_ref }} echo ${{contains(github.head_ref, 'breaking-')}}