From 57352293deefbaa3a564c73f9feb0c1384af69cc Mon Sep 17 00:00:00 2001 From: P3pp3rF1y Date: Tue, 1 Oct 2024 17:36:12 +0200 Subject: [PATCH] =?UTF-8?q?chore:=20=F0=9F=94=A7=20Fix=20checkout=20step?= =?UTF-8?q?=20to=20fetch=20deeper=20git=20log=20tree=20so=20that=20changel?= =?UTF-8?q?og=20creation=20can=20find=20details=20of=20commits=20included?= =?UTF-8?q?=20in=20merge?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/gradle.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 28979d5a..8654dccf 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -9,6 +9,8 @@ jobs: steps: - uses: actions/checkout@v4 + with: + fetch-depth: 200 # Fetch 200 latest commits to make sure changelog can be created from merge commits - name: Set up JDK 17 uses: actions/setup-java@v4 with: