Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| dbe738140b | |||
|
3044bd6105
|
|||
|
51cfcdc648
|
@@ -2,6 +2,12 @@
|
|||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## [1.2.4](https://git.0xmax42.io/actions/auto-changelog-release-action/compare/v1.2.3..v1.2.4) - 2025-12-14
|
||||||
|
|
||||||
|
### 🐛 Bug Fixes
|
||||||
|
|
||||||
|
- *(config)* Update template to generalize gitea remote and add postprocessors - ([51cfcdc](https://git.0xmax42.io/actions/auto-changelog-release-action/commit/51cfcdc6488c878764193c33121144564e76c802))
|
||||||
|
|
||||||
## [1.2.3](https://git.0xmax42.io/actions/auto-changelog-release-action/compare/v1.2.2..v1.2.3) - 2025-11-24
|
## [1.2.3](https://git.0xmax42.io/actions/auto-changelog-release-action/compare/v1.2.2..v1.2.3) - 2025-11-24
|
||||||
|
|
||||||
### 🐛 Bug Fixes
|
### 🐛 Bug Fixes
|
||||||
|
|||||||
@@ -4,13 +4,15 @@
|
|||||||
# Lines starting with "#" are comments.
|
# Lines starting with "#" are comments.
|
||||||
# Configuration options are organized into tables and keys.
|
# Configuration options are organized into tables and keys.
|
||||||
# See documentation for more information on available options.
|
# See documentation for more information on available options.
|
||||||
[remote.gitea]
|
# [remote.gitea] # Disabled by default
|
||||||
owner = "%OWNER%"
|
# owner = "%OWNER%"
|
||||||
repo = "%REPO%"
|
# repo = "%REPO%"
|
||||||
|
|
||||||
[changelog]
|
[changelog]
|
||||||
postprocessors = [
|
postprocessors = [
|
||||||
{ pattern = '<GITEA_URL>', replace = "https://git.0xmax42.io" }, # replace gitea url
|
{ pattern = '<GITEA_URL>', replace = "https://git.0xmax42.io" }, # replace gitea url
|
||||||
|
{ pattern = '<OWNER>', replace = "%OWNER%" }, # replace owner
|
||||||
|
{ pattern = '<REPO>', replace = "%REPO%" }, # replace repo
|
||||||
]
|
]
|
||||||
|
|
||||||
header = """
|
header = """
|
||||||
@@ -20,7 +22,7 @@ All notable changes to this project will be documented in this file.\n
|
|||||||
|
|
||||||
body = """
|
body = """
|
||||||
{%- macro remote_url() -%}
|
{%- macro remote_url() -%}
|
||||||
<GITEA_URL>/{{ remote.gitea.owner }}/{{ remote.gitea.repo }}
|
<GITEA_URL>/<OWNER>/<REPO>
|
||||||
{%- endmacro -%}
|
{%- endmacro -%}
|
||||||
|
|
||||||
{%- macro indent(text, prefix=" ") -%}
|
{%- macro indent(text, prefix=" ") -%}
|
||||||
|
|||||||
Reference in New Issue
Block a user