From 779b986d41eb9c81a9058993be917665877f6089 Mon Sep 17 00:00:00 2001 From: Philipp Burckhardt Date: Tue, 4 Jun 2024 12:53:34 -0400 Subject: [PATCH] build: fetch entire history for changelog generation --- .github/workflows/standalone_publish.yml | 4 ++-- .github/workflows/standalone_publish_custom.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/standalone_publish.yml b/.github/workflows/standalone_publish.yml index d7289b6ea3d0..6d3ba0545880 100644 --- a/.github/workflows/standalone_publish.yml +++ b/.github/workflows/standalone_publish.yml @@ -84,8 +84,8 @@ jobs: # Specify whether to remove untracked files before checking out the repository: clean: false - # Limit clone depth to the most recent commit: - fetch-depth: 1 + # Fetch all history to allowfor generation of changelogs: + fetch-depth: 0 # Specify whether to download Git-LFS files: lfs: false diff --git a/.github/workflows/standalone_publish_custom.yml b/.github/workflows/standalone_publish_custom.yml index 2c69fe4bb189..cae5e6deaec0 100644 --- a/.github/workflows/standalone_publish_custom.yml +++ b/.github/workflows/standalone_publish_custom.yml @@ -91,8 +91,8 @@ jobs: # Specify whether to remove untracked files before checking out the repository: clean: false - # Limit clone depth to the most recent commit: - fetch-depth: 1 + # Fetch all history to allowfor generation of changelogs: + fetch-depth: 0 # Specify whether to download Git-LFS files: lfs: false