From 026b66357b6f715f10955e066bb8b2446511af76 Mon Sep 17 00:00:00 2001 From: Darren Kelly <107671032+darrenvechain@users.noreply.github.com> Date: Thu, 16 May 2024 10:36:40 +0100 Subject: [PATCH] Fix master commit msg (#34) * fix: master commit message * test: commit message * fix: checkout the repo --- .github/workflows/on-master-commit.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/on-master-commit.yaml b/.github/workflows/on-master-commit.yaml index fdb17de0b..6474bb764 100644 --- a/.github/workflows/on-master-commit.yaml +++ b/.github/workflows/on-master-commit.yaml @@ -94,6 +94,9 @@ jobs: if: always() && (needs.publish-docker-image.result != 'success' || needs.run-unit-tests.result != 'success' || needs.lint.result != 'success' || needs.run-e2e-tests.result != 'success' || needs.license-check.result != 'success') runs-on: ubuntu-latest steps: + - name: Checkout code + uses: actions/checkout@v4 + - name: Get the commit message id: commit_message # This is a workaround to get the first line of the commit message. Passing the entire message can cause the payload (JSON) to be invalid.