fix: fix shell substitution in release-new command context

This commit is contained in:
mguschin
2026-03-23 14:56:36 +03:00
parent 91af50902d
commit e78b3474cd

View File

@@ -7,7 +7,7 @@ description: Create a new semver release. Usage: /release-new [major|minor|patch
- Current latest tag: !`git describe --tags --abbrev=0 2>/dev/null || echo "none"`
- Current branch: !`git branch --show-current`
- Unreleased commits: !`git log $(git describe --tags --abbrev=0 2>/dev/null || echo "")..HEAD --oneline 2>/dev/null || git log --oneline`
- Unreleased commits: !`git log --oneline -20`
## Your task