Files
conventional-semantic-git-t…/action.yml
Timo Behrendt a6e0311a4b
All checks were successful
CD / Release (push) Successful in 41s
chore: bump nodejs to 24 (#15)
Reviewed-on: #15
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
2025-09-05 18:44:13 +02:00

22 lines
545 B
YAML

name: "Conventional Semantic Git Tag Increment"
description: "Increments git tags based on conventional commit messages"
author: "Timo Behrendt <t.behrendt@t00n.de>"
inputs:
last-tag:
description: "Last git tag to increment from (optional, will auto-detect if not provided)"
required: false
default: ""
token:
description: "Token for repository access"
required: true
default: "${{ github.token }}"
outputs:
new-tag:
description: "The new incremented git tag"
runs:
using: "node24"
main: "dist/index.js"