From 798161fc3f5249e99899aadf2df39de3e93f4342 Mon Sep 17 00:00:00 2001 From: Bunnaroath Sou Date: Mon, 29 Jun 2020 13:08:04 -0700 Subject: [PATCH] Remove git fetch no longer need with latest git update --- .github/workflows/release.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9fd7994..63c8f76 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,12 +19,8 @@ jobs: steps: - name: 'Checkout' uses: actions/checkout@v2 - - # In order to generate release notes, we need a deep clone of the - # repository so that we can find the most recent tag and generate - # statistics based on it. - - name: 'Fetch History' - run: git fetch --prune --unshallow + with: + fetch-depth: 0 - name: 'Create Release Notes' uses: sifive/action-release-notes@v1