6 Commits

Author SHA1 Message Date
473db9aa2d chore(version): bump version to 1.2.5
All checks were successful
Auto Changelog & Release / release (push) Successful in 8s
Create Major Version Tag / update-major-tag (release) Successful in 7s
2025-12-14 22:04:05 +01:00
85901d62fc chore(changelog): add Gitea env vars to changelog and release scripts 2025-12-14 22:03:53 +01:00
8cdf29d1af Revert "fix(config): update template to generalize gitea remote and add postprocessors"
All checks were successful
Auto Changelog & Release / release (push) Successful in 17s
This reverts commit 51cfcdc648.
2025-12-14 22:01:04 +01:00
dbe738140b chore(changelog): update changelog for v1.2.4
All checks were successful
Create Major Version Tag / update-major-tag (release) Successful in 6s
2025-12-14 20:59:03 +00:00
3044bd6105 chore(version): bump version to 1.2.4
All checks were successful
Auto Changelog & Release / release (push) Successful in 10s
2025-12-14 21:58:51 +01:00
51cfcdc648 fix(config): update template to generalize gitea remote and add postprocessors 2025-12-14 21:58:38 +01:00
3 changed files with 12 additions and 1 deletions

View File

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

View File

@@ -1 +1 @@
1.2.3 1.2.5

View File

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