From a2acee209c59c039c4ffb8a007d48ef7b950d865 Mon Sep 17 00:00:00 2001 From: palash-signoz <88981777+palash-signoz@users.noreply.github.com> Date: Wed, 18 Aug 2021 18:56:44 +0530 Subject: [PATCH] commit lint is fixed (#261) --- .github/workflows/commitlint.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/commitlint.yml b/.github/workflows/commitlint.yml index 76ba2fa7b0..cbf608997e 100644 --- a/.github/workflows/commitlint.yml +++ b/.github/workflows/commitlint.yml @@ -11,4 +11,6 @@ jobs: - uses: actions/setup-node@v2.1.0 # or just "yarn" if you depend on "@commitlint/cli" already - run: yarn add @commitlint/cli + - run: yarn add @commitlint/config-conventional + - run: echo "module.exports = {extends: ['@commitlint/config-conventional']}" > commitlint.config.js - run: yarn run commitlint --from HEAD~${{ github.event.pull_request.commits }} --to HEAD