From 494c742aefc9355ee431f433655ddd3fd7efebcf Mon Sep 17 00:00:00 2001 From: Andrea Amorosi Date: Tue, 26 Apr 2022 16:15:06 +0200 Subject: [PATCH] fix: added back fetch-depth: 0 (#812) --- .github/workflows/on-merge-to-main.yml | 2 ++ .github/workflows/on-release-prod.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/on-merge-to-main.yml b/.github/workflows/on-merge-to-main.yml index 7def015f48..addbd22b48 100644 --- a/.github/workflows/on-merge-to-main.yml +++ b/.github/workflows/on-merge-to-main.yml @@ -16,6 +16,8 @@ jobs: steps: - name: "Checkout" uses: actions/checkout@v3 + with: + fetch-depth: 0 ######################### # Release new version ######################### diff --git a/.github/workflows/on-release-prod.yml b/.github/workflows/on-release-prod.yml index 3c857b34b4..9d8061a11b 100644 --- a/.github/workflows/on-release-prod.yml +++ b/.github/workflows/on-release-prod.yml @@ -13,6 +13,8 @@ jobs: steps: - name: "Checkout" uses: actions/checkout@v3 + with: + fetch-depth: 0 ######################### # Release new version #########################