From 7d0e1241a3f01abd88b730168f1fce9cb54b1453 Mon Sep 17 00:00:00 2001 From: Ciara Stacke Date: Fri, 17 Oct 2025 12:38:44 +0100 Subject: [PATCH] Fix condition in release draft step --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e6486456ff..17043a3ccd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -215,7 +215,7 @@ jobs: with: minor-label: "enhancement" major-label: "change" - publish: ${{ inputs.is_production_release && (inputs.dry_run == false || inputs.dry_run == null) }} + publish: ${{ inputs.is_production_release && (inputs.dry_run == false || inputs.dry_run == null) && true || false }} collapse-after: 20 notes-header: | *Below is the auto-generated changelog, which includes all PRs that went into the release.