From 7b21230398459fae4409d86b83dd1737a84a1547 Mon Sep 17 00:00:00 2001 From: Ivan Gabriele Date: Thu, 20 Jun 2024 13:27:54 +0200 Subject: [PATCH] ci(github): limit commit linting to 50 last commits in Lint job --- .github/workflows/check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 287551ef..112d2ba2 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -27,7 +27,7 @@ jobs: - name: Install uses: ./.github/actions/install - name: Lint commits (last 100) - run: yarn commitlint --from HEAD~99 --to HEAD -V + run: yarn commitlint --from HEAD~49 --to HEAD -V - name: Lint code run: yarn test:lint