chore: initial-commit (#1)
All checks were successful
CD / Release (push) Successful in 39s

Reviewed-on: #1
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
This commit was merged in pull request #1.
This commit is contained in:
2025-08-17 22:52:19 +02:00
committed by t.behrendt
parent 4eefc46a2f
commit 370fbd39a3
16 changed files with 6808 additions and 1 deletions

27
package.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "conventional-semantic-git-tag-increment",
"description": "GitHub Action to increment semantic version tag based on conventional commits",
"main": "src/index.ts",
"scripts": {
"typecheck": "tsc --noEmit",
"build": "esbuild src/index.ts --bundle --outfile=dist/index.js --platform=node --target=node20 --minify",
"test": "jest",
"format": "prettier --write src/**/*.ts"
},
"author": "Timo Behrendt <t.behrendt@t00n.de>",
"license": "MIT",
"devDependencies": {
"@types/conventional-commits-parser": "^5.0.1",
"@types/jest": "^30.0.0",
"@types/node": "^24.3.0",
"esbuild": "^0.25.9",
"jest": "^30.0.5",
"prettier": "^3.6.2",
"ts-jest": "^29.4.1",
"typescript": "^5.9.2"
},
"dependencies": {
"@actions/core": "^1.11.1",
"conventional-commits-parser": "^3.2.4"
}
}