Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
1187f6f3d2
|
|||
|
134b1543b3
|
|||
|
473db9aa2d
|
|||
|
85901d62fc
|
|||
|
8cdf29d1af
|
|||
| 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
|
||||||
|
|||||||
@@ -66,6 +66,9 @@ runs:
|
|||||||
- name: Generate and commit changelog (unreleased)
|
- name: Generate and commit changelog (unreleased)
|
||||||
if: steps.detect.outputs.version_changed == 'false'
|
if: steps.detect.outputs.version_changed == 'false'
|
||||||
shell: bash
|
shell: bash
|
||||||
|
env:
|
||||||
|
GITEA_TOKEN: ${{ inputs.token || '' }}
|
||||||
|
GITEA_API_URL: ${{ github.server_url }}/api/v1
|
||||||
run: |
|
run: |
|
||||||
${{ github.action_path }}/scripts/generate-unreleased-changelog.sh
|
${{ github.action_path }}/scripts/generate-unreleased-changelog.sh
|
||||||
|
|
||||||
@@ -74,5 +77,7 @@ runs:
|
|||||||
shell: bash
|
shell: bash
|
||||||
env:
|
env:
|
||||||
RELEASE_PUBLISH_TOKEN: ${{ inputs.token || '' }}
|
RELEASE_PUBLISH_TOKEN: ${{ inputs.token || '' }}
|
||||||
|
GITEA_TOKEN: ${{ inputs.token || '' }}
|
||||||
|
GITEA_API_URL: ${{ github.server_url }}/api/v1
|
||||||
run: |
|
run: |
|
||||||
${{ github.action_path }}/scripts/release-from-version.sh
|
${{ github.action_path }}/scripts/release-from-version.sh
|
||||||
|
|||||||
@@ -8,14 +8,16 @@ GIT_BRANCH="${GITHUB_REF##refs/heads/}"
|
|||||||
# === Step 1: Generate Changelog (only if file exists or on main) ===
|
# === Step 1: Generate Changelog (only if file exists or on main) ===
|
||||||
if [[ -f "$CHANGELOG_FILE" || "$GIT_BRANCH" == "main" ]]; then
|
if [[ -f "$CHANGELOG_FILE" || "$GIT_BRANCH" == "main" ]]; then
|
||||||
echo "📄 Generating $CHANGELOG_FILE using git-cliff..."
|
echo "📄 Generating $CHANGELOG_FILE using git-cliff..."
|
||||||
git-cliff -c "$CLIFF_CONFIG" --context \
|
git-cliff -c "$CLIFF_CONFIG" --context |
|
||||||
| "${GITHUB_ACTION_PATH}/scripts/augment_context.py" \
|
"${GITHUB_ACTION_PATH}/scripts/augment_context.py" |
|
||||||
| git-cliff -c "$CLIFF_CONFIG" --from-context - -o "$CHANGELOG_FILE"
|
git-cliff -c "$CLIFF_CONFIG" --from-context - -o "$CHANGELOG_FILE"
|
||||||
else
|
else
|
||||||
echo "ℹ️ $CHANGELOG_FILE does not exist and branch is not 'main'. Skipping generation."
|
echo "ℹ️ $CHANGELOG_FILE does not exist and branch is not 'main'. Skipping generation."
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
echo "✅ $CHANGELOG_FILE generation completed."
|
||||||
|
|
||||||
# === Step 2: Commit and push changes if any ===
|
# === Step 2: Commit and push changes if any ===
|
||||||
git add "$CHANGELOG_FILE"
|
git add "$CHANGELOG_FILE"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user