From 9ff9f8f6013bc09ff8cfddef30617e410384be8d Mon Sep 17 00:00:00 2001 From: Andrei Kvapil Date: Thu, 3 Apr 2025 15:34:58 +0200 Subject: [PATCH] Workflows fix DCO --- .github/workflows/tags.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tags.yaml b/.github/workflows/tags.yaml index fd384ab5..54412916 100644 --- a/.github/workflows/tags.yaml +++ b/.github/workflows/tags.yaml @@ -66,7 +66,7 @@ jobs: git config user.name "github-actions" git config user.email "github-actions@github.com" git add . - git commit -m "Prepare release ${GITHUB_REF#refs/tags/}" || echo "No changes to commit" + git commit -m "Prepare release ${GITHUB_REF#refs/tags/}" -s || echo "No changes to commit" - name: Create release branch if: steps.check_release.outputs.skip == 'false' @@ -97,8 +97,8 @@ jobs: repo: context.repo.repo, head: branch, base: base, - title: `${version}`, - body: `This PR prepares the release \`${version}\`.`, + title: `Prepare release v${version}`, + body: `This PR prepares the release \`v${version}\`.`, draft: true }); console.log(`Created draft pull request from ${branch} to ${base}`);