From e511eec706d01cc8bb59542e13dcfa89cb32fb45 Mon Sep 17 00:00:00 2001 From: goulven Date: Thu, 4 Jan 2024 02:04:53 +0100 Subject: [PATCH] test --- .github/workflows/releaseDeployProd.yml | 30 +++++++++++++++---------- 1 file changed, 18 insertions(+), 12 deletions(-) diff --git a/.github/workflows/releaseDeployProd.yml b/.github/workflows/releaseDeployProd.yml index 1aee49930..d603e2ca5 100644 --- a/.github/workflows/releaseDeployProd.yml +++ b/.github/workflows/releaseDeployProd.yml @@ -29,10 +29,9 @@ jobs: ############################################ - # Create the release with changelog - ########################################### - - + # Create the release with changelog, + # PR Oriented + ########################################### - name: "Build Changelog" id: build_changelog uses: mikepenz/release-changelog-builder-action@v4.1.0 @@ -80,6 +79,11 @@ jobs: } + ############################################ + # Create the release with changelog, + # push Oriented + ########################################### + - name: "Build Changelog push oriented" id: build_changelog_push uses: mikepenz/release-changelog-builder-action@v4.1.0 @@ -91,7 +95,7 @@ jobs: commitMode: true configurationJson: | { - "template": "## Commits\n#{{UNCATEGORIZED}}", + "template": "# 🙈 All the commits\n#{{UNCATEGORIZED}}", "pr_template": "#{{TITLE}} (#{{AUTHOR}})", "empty_template": "Nothing", @@ -99,20 +103,22 @@ jobs: "categories": [] } + ############################################ + # Merge the backlogs + ########################################### - name: Merge site run: cat PUSH-CHANGELOG.txt >> PR-CHANGELOG.txt - + ############################################ + # Create the release + ########################################### - name: Create Release uses: mikepenz/action-gh-release@v0.2.0-a03 #softprops/action-gh-release with: - body: ${{ steps.build_changelog.outputs.changelog }} body_path: ${{ github.workspace }}/PR-CHANGELOG.txt + body: ${{ steps.build_changelog.outputs.changelog }} - - - - - \ No newline at end of file + + \ No newline at end of file