We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 012dd26 commit 6828a0aCopy full SHA for 6828a0a
.github/workflows/release.yml
@@ -4,6 +4,9 @@ on:
4
release:
5
types: [created]
6
7
+permissions:
8
+ contents: write
9
+
10
jobs:
11
build:
12
name: Build and Attach Release Binaries
cmd/commit-wizard/main.go
@@ -23,6 +23,10 @@ func main() {
23
message = ""
24
}
25
26
+ if scope == "-a" || scope == "-amend" {
27
+ scope = ""
28
+ }
29
30
commitMessage := commit.FormatCommitMessage(commitType, scope, message)
31
flags := commit.ExtractFlags(os.Args)
32
0 commit comments