Some checks failed
Auto Changelog & Release / release (push) Failing after 3s
- Simplifies the workflow by removing redundant steps - Eliminates scripts for version reading, CLI installation, and changelog generation - Focuses on reducing complexity and maintaining essential functionality
31 lines
704 B
YAML
31 lines
704 B
YAML
name: Auto Changelog & Release
|
|
description: "One-stop composite action for version-bump detection, changelog generation and Gitea release."
|
|
|
|
inputs:
|
|
token:
|
|
description: "Gitea/GitHub PAT für Release-API"
|
|
required: false
|
|
default: ""
|
|
author_name:
|
|
description: "Commit-Autorname"
|
|
required: false
|
|
default: ""
|
|
author_email:
|
|
description: "Commit-Autore-Mail"
|
|
required: false
|
|
default: ""
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Detect version change
|
|
shell: bash
|
|
id: detect
|
|
run: |
|
|
bash ${{ github.action_path }}/scripts/detect-version-change.sh
|