From f7c6635a7a521799c74dc508bfd4bb37946f6a3c Mon Sep 17 00:00:00 2001 From: Matt McKay Date: Sat, 27 Dec 2025 16:48:55 +1100 Subject: [PATCH] Add fetch-depth: 0 to checkout actions for changelog support --- .github/workflows/ci.yml | 2 ++ .github/workflows/publish.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 36ddb70b..a5d5d7b0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,6 +6,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Setup Anaconda uses: conda-incubator/setup-miniconda@v3 with: diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index da3099b5..480de601 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -10,6 +10,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Setup Anaconda uses: conda-incubator/setup-miniconda@v3 with: