Skip to content

Commit e44cdb4

Browse files
committed
feat(github): simplify commit message format for issues #408
Remove issue number prefix from auto-generated commit messages, keeping only the issue title for cleaner formatting.
1 parent c8521ad commit e44cdb4

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

core/src/main/kotlin/cc/unitmesh/devti/actions/github/FetchKanbanIssuesAction.kt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,7 @@ class FetchKanbanIssuesAction : DumbAwareAction() {
101101
.setSelectionMode(SINGLE_SELECTION)
102102
.setItemSelectedCallback { selectedIssue = it }
103103
.setItemChosenCallback {
104-
commitMessage.setCommitMessage(
105-
"#${it.issue} ${it.displayText}"
106-
)
104+
commitMessage.setCommitMessage(it.displayText)
107105
commitMessage.editorField.selectAll()
108106
chosenIssue = it
109107
}

0 commit comments

Comments
 (0)