Some checks failed
Auto Changelog & Release / release (push) Failing after 2s
- Eliminate redundant steps for CLIFF version reading, git-cliff installation, and git setup to streamline action configuration - Simplifies the workflow by focusing on essential functionality
28 lines
656 B
YAML
28 lines
656 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
|
|
author_name:
|
|
description: "Commit-Autorname"
|
|
required: false
|
|
author_email:
|
|
description: "Commit-Autore-Mail"
|
|
required: false
|
|
|
|
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
|