From ba46b6f8693cc4527a7c18de599cfdc6c117cf35 Mon Sep 17 00:00:00 2001 From: Manuel <30572287+manuel-rw@users.noreply.github.com> Date: Tue, 28 May 2024 21:40:04 +0200 Subject: [PATCH] ci: add conventional commits workflow (#541) --- .github/workflows/conventional-commits.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/conventional-commits.yml diff --git a/.github/workflows/conventional-commits.yml b/.github/workflows/conventional-commits.yml new file mode 100644 index 000000000..8f2216bd7 --- /dev/null +++ b/.github/workflows/conventional-commits.yml @@ -0,0 +1,16 @@ + +# https://github.com/webiny/action-conventional-commits?tab=readme-ov-file + +name: Conventional Commits + +on: + pull_request: + branches: [ dev ] + +jobs: + build: + name: Conventional Commits + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: webiny/action-conventional-commits@v1.3.0 \ No newline at end of file