Skip to content

Commit

Permalink
ci: Remove commit prefix in changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
cyb3rko committed Apr 5, 2023
1 parent 42392c7 commit 3b3e498
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/release-builder.yml
Expand Up @@ -19,7 +19,7 @@ jobs:
configurationJson: |
{
"template": "#{{CHANGELOG}}<hr>\n\n<h3>Facts</h3>\n\n- <b>Number of commits</b>: #{{COMMITS}}\n- <b>Number of changed files</b>: #{{CHANGED_FILES}}\n- <b>Added lines</b>: #{{ADDITIONS}}\n- <b>Deleted lines</b>: #{{DELETIONS}}\n<hr>\n\nChangelog auto-generated by <a href='https://github.com/mikepenz/release-changelog-builder-action'>Release Changelog Builder Action (Mike Penz)</a>.\nRelease auto-created by <a href='https://github.com/softprops/action-gh-release'>action gh-release (Doug Tangren)</a>.",
"pr_template": "- #{{TITLE}} (#{{MERGE_SHA}})",
"pr_template": "#{{TITLE}} (#{{MERGE_SHA}})",
"base_branches": ["main"],
"tag_resolver": {
"method": "sort"
Expand Down Expand Up @@ -68,6 +68,12 @@ jobs:
"target": "$1",
"on_property": "title"
}
],
"transformers": [
{
"pattern": "(.+):(.+)",
"target": "-$2"
}
]
}
Expand Down

0 comments on commit 3b3e498

Please sign in to comment.