skip_changelog: Fix version updater DCO

DCO sign-off needs to be part of the commit, not required in the PR
message.

Signed-off-by: SuperQ <superq@gmail.com>
This commit is contained in:
SuperQ 2023-05-30 18:39:18 +02:00
parent 5ef47f2d00
commit 8c205cbc1d
No known key found for this signature in database
GPG key ID: C646B23C9E3245F1

View file

@ -96,7 +96,7 @@ git add \
"roles/${role}/defaults/main.yml" \ "roles/${role}/defaults/main.yml" \
"roles/${role}/meta/argument_specs.yml" \ "roles/${role}/meta/argument_specs.yml" \
"roles/${role}/README.md" "roles/${role}/README.md"
git commit -m 'patch: :tada: automated upstream release update' git commit --signoff -m 'patch: :tada: automated upstream release update'
echo_green "Pushing to ${update_branch} branch in ${role}" echo_green "Pushing to ${update_branch} branch in ${role}"
if ! git push "https://${GITHUB_TOKEN}:@github.com/${GIT_REPO}" --set-upstream "${update_branch}"; then if ! git push "https://${GITHUB_TOKEN}:@github.com/${GIT_REPO}" --set-upstream "${update_branch}"; then
echo_yellow "Branch push failed." echo_yellow "Branch push failed."
@ -107,7 +107,7 @@ if ! post_pull_request \
"patch: New ${source_repo} upstream release!" \ "patch: New ${source_repo} upstream release!" \
"main" \ "main" \
"${update_branch}" \ "${update_branch}" \
"The upstream [${source_repo}](https://github.com/${source_repo}/releases) released new software version - **${version}**!\n\nThis automated PR updates code to bring new version into repository.\n\nSigned-off-by: ${GIT_USER} <${GIT_MAIL}>" ; then "The upstream [${source_repo}](https://github.com/${source_repo}/releases) released new software version - **${version}**!\n\nThis automated PR updates code to bring new version into repository." ; then
echo_red "Pull request failed" echo_red "Pull request failed"
exit 1 exit 1
fi fi