3 Commits

Author SHA1 Message Date
f44f457e6b chore(changelog): update changelog for v0.4.1
All checks were successful
Create Major Version Tag / update-major-tag (release) Successful in 4s
2025-06-29 12:11:27 +00:00
169d9ec4db chore(version): bump to 0.4.1
All checks were successful
Auto Changelog & Release / release (push) Successful in 7s
2025-06-29 14:11:17 +02:00
cbcd5e2ab7 fix(action): standardize input key naming
- Update input key from `allow-non-main-release` to `allow_non_main_release`
- Ensure consistency with environment variable naming convention
2025-06-29 14:11:17 +02:00
3 changed files with 9 additions and 3 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.
## [0.4.1](https://git.0xmax42.io/actions/auto-changelog-release-action/compare/v0.4.0..v0.4.1) - 2025-06-29
### 🐛 Bug Fixes
- *(action)* Standardize input key naming - ([cbcd5e2](https://git.0xmax42.io/actions/auto-changelog-release-action/commit/cbcd5e2ab7e7f2498021d5043da9999f62dcf44d))
## [0.4.0](https://git.0xmax42.io/actions/auto-changelog-release-action/compare/v0.3.6..v0.4.0) - 2025-06-29 ## [0.4.0](https://git.0xmax42.io/actions/auto-changelog-release-action/compare/v0.3.6..v0.4.0) - 2025-06-29
### 🚀 Features ### 🚀 Features

View File

@@ -1 +1 @@
0.4.0 0.4.1

View File

@@ -14,7 +14,7 @@ inputs:
description: "Commit-Autore-Mail" description: "Commit-Autore-Mail"
required: false required: false
default: "" default: ""
allow-non-main-release: allow_non_main_release:
description: "Allow publishing releases from branches other than 'main'." description: "Allow publishing releases from branches other than 'main'."
required: false required: false
default: "false" default: "false"
@@ -29,7 +29,7 @@ runs:
GITHUB_EVENT_BEFORE: ${{ github.event.before || '' }} GITHUB_EVENT_BEFORE: ${{ github.event.before || '' }}
GITHUB_SHA: ${{ github.sha || '' }} GITHUB_SHA: ${{ github.sha || '' }}
GITHUB_REF: ${{ github.ref || '' }} GITHUB_REF: ${{ github.ref || '' }}
ALLOW_NON_MAIN_RELEASE: ${{ inputs.allow-non-main-release }} ALLOW_NON_MAIN_RELEASE: ${{ inputs.allow_non_main_release }}
run: | run: |
${{ github.action_path }}/scripts/detect-version-change.sh ${{ github.action_path }}/scripts/detect-version-change.sh