From e1725810c0ff5013c7dab60922a33d26f80980f4 Mon Sep 17 00:00:00 2001 From: Rebecca Whitworth Date: Wed, 27 Aug 2025 06:59:52 +0100 Subject: [PATCH] Consider using the opinionated-commit-message Github Action #23967 Fix #23967 Added file check-commit-message.yml to the workflows folder to allow for auto check of commits --- .github/workflows/check-commit-message.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/check-commit-message.yml diff --git a/.github/workflows/check-commit-message.yml b/.github/workflows/check-commit-message.yml new file mode 100644 index 0000000000000..ce9aa73cc6c08 --- /dev/null +++ b/.github/workflows/check-commit-message.yml @@ -0,0 +1,20 @@ +name: 'Check commit message style' +on: + pull_request: + types: + - opened + - edited + - reopened + - synchronize + push: + branches: + - master + - 'dev/*' + +jobs: + check-commit-message-style: + name: Check commit message style + runs-on: ubuntu-latest + steps: + - name: Check + uses: mristin/opinionated-commit-message@v3.1.1 \ No newline at end of file