-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
goulven
authored and
goulven
committed
Jan 4, 2024
1 parent
6f2dc84
commit e511eec
Showing
1 changed file
with
18 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/[email protected] | ||
|
@@ -80,6 +79,11 @@ jobs: | |
} | ||
############################################ | ||
# Create the release with changelog, | ||
# push Oriented | ||
########################################### | ||
|
||
- name: "Build Changelog push oriented" | ||
id: build_changelog_push | ||
uses: mikepenz/[email protected] | ||
|
@@ -91,28 +95,30 @@ jobs: | |
commitMode: true | ||
configurationJson: | | ||
{ | ||
"template": "## Commits\n#{{UNCATEGORIZED}}", | ||
"template": "# 🙈 All the commits\n#{{UNCATEGORIZED}}", | ||
"pr_template": "#{{TITLE}} (#{{AUTHOR}})", | ||
"empty_template": "Nothing", | ||
"categories": [] | ||
} | ||
############################################ | ||
# Merge the backlogs | ||
########################################### | ||
|
||
- name: Merge site | ||
run: cat PUSH-CHANGELOG.txt >> PR-CHANGELOG.txt | ||
|
||
|
||
############################################ | ||
# Create the release | ||
########################################### | ||
|
||
- name: Create Release | ||
uses: mikepenz/[email protected] #softprops/action-gh-release | ||
with: | ||
body: ${{ steps.build_changelog.outputs.changelog }} | ||
body_path: ${{ github.workspace }}/PR-CHANGELOG.txt | ||
body: ${{ steps.build_changelog.outputs.changelog }} | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|