initial commit
All checks were successful
CI / Check Dist (pull_request) Successful in 11s
CI / Test (pull_request) Successful in 56s
CI / Dry-Run (pull_request) Successful in 11s

This commit is contained in:
2025-08-17 21:28:44 +02:00
parent 4eefc46a2f
commit 17c1cd8a41
16 changed files with 6804 additions and 1 deletions

21
action.yml Normal file
View File

@@ -0,0 +1,21 @@
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: "node20"
main: "dist/index.js"