From 7347106694515dee4f3fd77efaba63772a838201 Mon Sep 17 00:00:00 2001 From: cclecle Date: Tue, 28 Mar 2023 00:21:37 +0100 Subject: [PATCH] test printing changelog parts --- Jenkinsfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 620b2f3..a6340c4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -624,8 +624,11 @@ pipeline { | + "Reference documentation: [mkdocs page](https://chacha.ddns.net/mkdocs-web/${_PROJECT_USER_NAME}/${PY_PROJECT_NAME}/${_GIT_BRANCH}/${PY_PROJECT_VERSION_STRIPPED}/) " | |LastTag=gitversionhelper.tag.getLastTag(same_branch=True) + |print(f"LastTag= {LastTag}") |CommitHistory=gitversionhelper.commit.getMessagesSinceTag(LastTag, merged_output=True, ignore_merged=True) + |print(f"CommitHistory= {CommitHistory}") |Changelog = ChangelogFactory(CommitHistory).RenderFullChangelog(include_unknown=True) + |print(f"Changelog= {Changelog}") | |ReleaseContent = ReleaseContent + "\\n"+ "\\n"+ "## Changelog:\\n" + Changelog |