From 6c9f44ab9351c35c25c517925cd2289cd5bd9ab2 Mon Sep 17 00:00:00 2001 From: Guilherme Salazar Date: Tue, 27 Feb 2024 08:27:14 -0300 Subject: [PATCH] chore(ci): add commit-lint action Enforce commit message format. --- .github/workflows/commitlint.yml | 12 ++++++++++++ 1 file changed, 12 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 00000000000..0901434386e --- /dev/null +++ b/.github/workflows/commitlint.yml @@ -0,0 +1,12 @@ +name: commit-lint + +on: [push, pull_request] + +jobs: + lint: + runs-on: ubuntu-latest + + steps: + - uses: ahmadnassri/action-commit-lint@v2 + with: + config: conventional