From f26d2f94645d1cf32de9a543c4cbd22c9fcf233c Mon Sep 17 00:00:00 2001 From: Thomas Belin Date: Mon, 22 Jan 2024 15:46:01 +0100 Subject: [PATCH] chore: Make sure entire repo is fetched when cherry-picking release commits --- .github/workflows/cherry-pick-release-to-dev.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/cherry-pick-release-to-dev.yml b/.github/workflows/cherry-pick-release-to-dev.yml index 8330dd64e1b..aaf68e6058b 100644 --- a/.github/workflows/cherry-pick-release-to-dev.yml +++ b/.github/workflows/cherry-pick-release-to-dev.yml @@ -11,6 +11,8 @@ jobs: steps: - name: checkout uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Create PR to branch uses: gorillio/github-action-cherry-pick@master