From 43c3e0db1983a11706e94d9e2f61f961b3fcfecd Mon Sep 17 00:00:00 2001 From: Jens Reimann Date: Thu, 27 Feb 2025 14:54:41 +0100 Subject: [PATCH] add conventional commit check --- .github/workflows/commit.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/commit.yaml diff --git a/.github/workflows/commit.yaml b/.github/workflows/commit.yaml new file mode 100644 index 000000000..b0bc8c76f --- /dev/null +++ b/.github/workflows/commit.yaml @@ -0,0 +1,19 @@ +name: Lint Commit Messages + +on: + pull_request: + branches: + - main + - release/** + +permissions: + contents: read + pull-requests: read + +jobs: + + commitlint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: wagoid/commitlint-github-action@v6