From 886f030694eac61695383052561c9b6b65f13054 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Mikul=C3=A1=C5=A1ek?= Date: Mon, 8 Apr 2024 12:41:14 +0200 Subject: [PATCH] ci: introduce commit message linter --- .github/workflows/commitlint.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/commitlint.yml diff --git a/.github/workflows/commitlint.yml b/.github/workflows/commitlint.yml new file mode 100644 index 0000000..8cbecd9 --- /dev/null +++ b/.github/workflows/commitlint.yml @@ -0,0 +1,14 @@ +--- +name: Commit messages linter + +on: + pull_request: + branches: + - master + +jobs: + commitlint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: wagoid/commitlint-github-action@v6