9 Commits

Author SHA1 Message Date
518d1a2055 chore(changelog): update changelog for v0.3.0
All checks were successful
Create Major Version Tag / update-major-tag (release) Successful in 6s
2025-06-20 14:13:08 +00:00
eadc2ebc63 chore(version): bump to 0.3.0
All checks were successful
Auto Changelog & Release / release (push) Successful in 8s
2025-06-20 16:12:58 +02:00
522689977f feat(script): enhance git-cliff installer with jq support
- Add jq as a required dependency for JSON parsing
- Replace grep/sed with jq for improved readability and reliability
- Handle errors more gracefully when fetching release info or assets
2025-06-20 16:12:38 +02:00
5c8f734acc chore(changelog): update unreleased changelog 2025-06-14 18:55:13 +00:00
380b9ad81a chore(pr): add default merge template for pull requests
All checks were successful
Auto Changelog & Release / release (push) Successful in 6s
- Introduces a default merge message template for pull requests
- Standardizes merge commit messages with placeholders for PR details
2025-06-14 20:55:03 +02:00
79d7c5a7ee chore(workflows): update release action version
- Switches release action reference from `main` to `v0` for stability
2025-06-14 20:55:03 +02:00
75df670db7 chore(changelog): update changelog for v0.2.3
All checks were successful
Create Major Version Tag / update-major-tag (release) Successful in 4s
2025-06-14 17:56:14 +00:00
4122b99eba chore(version): bump version to 0.2.3
All checks were successful
Auto Changelog & Release / release (push) Successful in 7s
2025-06-14 19:56:06 +02:00
5d42ea9ddb fix(script): adjust GIT_AUTHOR_DATE format for compatibility
- Updates GIT_AUTHOR_DATE to use Unix timestamp format for consistency
  and improved compatibility with systems parsing date formats.
2025-06-14 19:56:06 +02:00
6 changed files with 39 additions and 10 deletions

View File

@@ -0,0 +1,5 @@
chore(pr): ${PullRequestTitle} ${PullRequestReference}
${PullRequestDescription}
Merged from ${HeadBranch} into ${BaseBranch}

View File

@@ -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 }}

View File

@@ -2,6 +2,22 @@
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.3.0](https://git.0xmax42.io/actions/auto-changelog-release-action/compare/v0.2.3..v0.3.0) - 2025-06-20
### 🚀 Features
- *(script)* Enhance git-cliff installer with jq support - ([5226899](https://git.0xmax42.io/actions/auto-changelog-release-action/commit/522689977fe8883975e68add1b0cba2e685978ee))
### ⚙️ Miscellaneous Tasks
- *(workflows)* Update release action version - ([79d7c5a](https://git.0xmax42.io/actions/auto-changelog-release-action/commit/79d7c5a7eefda51f03a9bde0e933689c29d57567))
## [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

View File

@@ -1 +1 @@
0.2.2 0.3.0

View File

@@ -10,7 +10,7 @@ INSTALL_DIR="/usr/local/bin"
VERSION="${1:-latest}" VERSION="${1:-latest}"
need() { command -v "$1" >/dev/null || { echo "$1 is missing"; exit 1; }; } need() { command -v "$1" >/dev/null || { echo "$1 is missing"; exit 1; }; }
need curl; need tar; need grep; need sed; need awk need curl; need tar; need grep; need sed; need awk; need jq
# 1 Determine version → Fetch release JSON # 1 Determine version → Fetch release JSON
if [[ "$VERSION" == "latest" ]]; then if [[ "$VERSION" == "latest" ]]; then
@@ -20,15 +20,23 @@ else
fi fi
echo "🔍 Fetching release info ($API_URL)…" echo "🔍 Fetching release info ($API_URL)…"
JSON=$(curl -sL "$API_URL") JSON=$(curl -fsSL "$API_URL") || {
echo "❌ Failed to fetch release info"
exit 1
}
VERSION=$(echo "$JSON" | grep -m1 '"tag_name":' | sed -E 's/.*"v?([^\"]+)".*/\1/') VERSION=$(jq -r '.tag_name' <<< "$JSON") || {
ASSET_URL=$(echo "$JSON" | echo "❌ Could not extract version"
grep -Eo '"browser_download_url": *"[^"]+' | exit 1
cut -d'"' -f4 | }
ASSET_URL=$(jq -r '.assets[]?.browser_download_url' <<< "$JSON" |
grep "${ARCH_OS}\.tar" | head -n1) grep "${ARCH_OS}\.tar" | head -n1)
[[ -z "$ASSET_URL" ]] && { echo "❌ Matching asset not found"; exit 1; } if [[ -z "$ASSET_URL" ]]; then
echo "❌ Matching asset not found for architecture ${ARCH_OS}"
exit 1
fi
ASSET_FILE=$(basename "$ASSET_URL") ASSET_FILE=$(basename "$ASSET_URL")
echo "📦 Downloading git-cliff v${VERSION} (${ASSET_FILE}) …" echo "📦 Downloading git-cliff v${VERSION} (${ASSET_FILE}) …"

View File

@@ -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"