From 8bdd9ab411a7b16d888be4f413820e544a90dcba Mon Sep 17 00:00:00 2001 From: Kanishk Pachauri Date: Thu, 12 Oct 2023 18:02:12 +0530 Subject: [PATCH] [feat]: Added Conventional Commits Checker Action to Repo. --- .../.github/workflows/conventional-commits.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/.github/workflows/conventional-commits.yml diff --git a/.github/workflows/.github/workflows/conventional-commits.yml b/.github/workflows/.github/workflows/conventional-commits.yml new file mode 100644 index 0000000..c8d3558 --- /dev/null +++ b/.github/workflows/.github/workflows/conventional-commits.yml @@ -0,0 +1,13 @@ +name: Conventional Commits + +on: + pull_request: + branches: [main] + +jobs: + build: + name: Conventional Commits + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: webiny/action-conventional-commits@v1.1.0