From 4eb1fe74a5f85b6d3008b7dfd5c543d82502fb7d Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Tue, 19 Jul 2022 12:03:18 +0530 Subject: [PATCH] chore: dont fetch full repo In most cases we need 10-50 previous commits. Checking out full repo is time consuming and not required. --- .github/workflows/semantic-commits.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/semantic-commits.yml b/.github/workflows/semantic-commits.yml index 4bfb273ffa..a3536d5019 100644 --- a/.github/workflows/semantic-commits.yml +++ b/.github/workflows/semantic-commits.yml @@ -17,7 +17,7 @@ jobs: steps: - uses: actions/checkout@v3 with: - fetch-depth: 0 + fetch-depth: 200 - uses: actions/setup-node@v3 with: