From ad9de855606766fe13bd6cf57e3b945e804b84b2 Mon Sep 17 00:00:00 2001 From: Andrew Duffy Date: Mon, 23 Feb 2026 14:04:09 -0500 Subject: [PATCH] fix commit parsing we need to use fetch-depth 0 otherwise we lose the history parsing Signed-off-by: Andrew Duffy --- .github/workflows/ci.yml | 2 ++ .github/workflows/deploy.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 21a404a..98d0878 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,6 +11,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Setup Bun uses: oven-sh/setup-bun@v2 diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 311635a..f8bc9c3 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -20,6 +20,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Setup Bun uses: oven-sh/setup-bun@v2