Compare commits
5 Commits
v0.2.2
...
380b9ad81a
| Author | SHA1 | Date | |
|---|---|---|---|
|
380b9ad81a
|
|||
|
79d7c5a7ee
|
|||
| 75df670db7 | |||
|
4122b99eba
|
|||
|
5d42ea9ddb
|
5
.gitea/default_merge_message/MERGE_TEMPLATE.md
Normal file
5
.gitea/default_merge_message/MERGE_TEMPLATE.md
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
chore(pr): ${PullRequestTitle} ${PullRequestReference}
|
||||||
|
|
||||||
|
${PullRequestDescription}
|
||||||
|
|
||||||
|
Merged from ${HeadBranch} into ${BaseBranch}
|
||||||
@@ -14,6 +14,6 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- name: Release
|
- name: Release
|
||||||
uses: https://git.0xmax42.io/actions/auto-changelog-release-action@main
|
uses: https://git.0xmax42.io/actions/auto-changelog-release-action@v0
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.RELEASE_PUBLISH_TOKEN }}
|
token: ${{ secrets.RELEASE_PUBLISH_TOKEN }}
|
||||||
|
|||||||
@@ -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.
|
||||||
|
|
||||||
|
## [0.2.3](https://git.0xmax42.io/actions/auto-changelog-release-action/compare/v0.2.2..v0.2.3) - 2025-06-14
|
||||||
|
|
||||||
|
### 🐛 Bug Fixes
|
||||||
|
|
||||||
|
- *(script)* Adjust GIT_AUTHOR_DATE format for compatibility - ([5d42ea9](https://git.0xmax42.io/actions/auto-changelog-release-action/commit/5d42ea9ddbfa4f151c83fc16c652d55618f2ee04))
|
||||||
|
|
||||||
## [0.2.2](https://git.0xmax42.io/actions/auto-changelog-release-action/compare/v0.2.1..v0.2.2) - 2025-06-14
|
## [0.2.2](https://git.0xmax42.io/actions/auto-changelog-release-action/compare/v0.2.1..v0.2.2) - 2025-06-14
|
||||||
|
|
||||||
### 🚀 Features
|
### 🚀 Features
|
||||||
|
|||||||
@@ -95,7 +95,7 @@ if git rev-parse "v$VERSION" >/dev/null 2>&1; then
|
|||||||
echo "🔁 Tag v$VERSION already exists, skipping."
|
echo "🔁 Tag v$VERSION already exists, skipping."
|
||||||
else
|
else
|
||||||
echo "🏷️ Creating annotated tag v$VERSION"
|
echo "🏷️ Creating annotated tag v$VERSION"
|
||||||
export GIT_AUTHOR_DATE="$(date --iso-8601=seconds)"
|
export GIT_AUTHOR_DATE="@$(date +%s)"
|
||||||
export GIT_COMMITTER_DATE="$GIT_AUTHOR_DATE"
|
export GIT_COMMITTER_DATE="$GIT_AUTHOR_DATE"
|
||||||
git tag -a "v$VERSION" -F "$RELEASE_BODY_TMP" --cleanup=verbatim
|
git tag -a "v$VERSION" -F "$RELEASE_BODY_TMP" --cleanup=verbatim
|
||||||
git push origin "v$VERSION"
|
git push origin "v$VERSION"
|
||||||
|
|||||||
Reference in New Issue
Block a user