From 16a0f32b000c7c1b1b36226e16e763aaaeb08f46 Mon Sep 17 00:00:00 2001 From: Marek Serafin Date: Wed, 29 May 2024 13:01:45 +0200 Subject: [PATCH] chore(github-actions): added commit message validation on PR --- .github/workflows/commit-message-validator.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/commit-message-validator.yml diff --git a/.github/workflows/commit-message-validator.yml b/.github/workflows/commit-message-validator.yml new file mode 100644 index 00000000..49a34250 --- /dev/null +++ b/.github/workflows/commit-message-validator.yml @@ -0,0 +1,16 @@ +name: "Commit message validation on pull request" + +on: pull_request + +jobs: + commit-message-validation: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Commit message validation + uses: lumapps/commit-message-validator@master + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file