From faf9bcce4c400fed9e84b9a4120087131b23a191 Mon Sep 17 00:00:00 2001 From: leha-bot Date: Sat, 23 Sep 2023 18:18:48 +0300 Subject: [PATCH] feat(ci): conventional commits checker action Closes #20. --- .github/workflows/commitlint.yml | 16 ++++++++++++++++ 1 file changed, 16 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..86bea98 --- /dev/null +++ b/.github/workflows/commitlint.yml @@ -0,0 +1,16 @@ +name: commitlint +on: + push: + pull_request: + branches: [ master, dev ] + +jobs: + commitlint: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Commitlint + uses: remarkablemark/commitlint@v1