From a2175563812fe36a34faa92bd7e5702cf65f7f9f Mon Sep 17 00:00:00 2001 From: Adam Date: Tue, 20 Jan 2026 15:12:45 +0000 Subject: [PATCH] fix: add skip condition to cache-app-data job in release workflow (since it does not depend on bump-version) --- .github/workflows/release-impl.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release-impl.yml b/.github/workflows/release-impl.yml index b8ac43a..603f3b7 100644 --- a/.github/workflows/release-impl.yml +++ b/.github/workflows/release-impl.yml @@ -289,6 +289,8 @@ jobs: path: CHANGELOG_increment.md cache-app-data: + # skip if '[skip release]' is in the PR title; or if merging any branch other than pre_release_branch into release_branch + if: "!contains(inputs.pr-title, '[skip release]') && (inputs.pr-base-ref == inputs.pre_release_branch || (inputs.pr-base-ref == inputs.release_branch && inputs.pr-head-ref == inputs.pre_release_branch))" permissions: # No write permission contents: read