From 928a0ad3c51a3e1595313f7323c876bcdaba0085 Mon Sep 17 00:00:00 2001 From: leo Date: Wed, 16 Apr 2025 19:39:24 +0800 Subject: [PATCH] feature: add `wip` (work in progress) type (#1200) Signed-off-by: leo --- src/Models/ConventionalCommitType.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Models/ConventionalCommitType.cs b/src/Models/ConventionalCommitType.cs index 98169275..7fb5ee16 100644 --- a/src/Models/ConventionalCommitType.cs +++ b/src/Models/ConventionalCommitType.cs @@ -12,6 +12,7 @@ namespace SourceGit.Models { new ConventionalCommitType("Features", "feat", "Adding a new feature"), new ConventionalCommitType("Bug Fixes", "fix", "Fixing a bug"), + new ConventionalCommitType("Work In Progress", "wip", "Still being developed and not yet complete"), new ConventionalCommitType("Reverts", "revert", "Undoing a previous commit"), new ConventionalCommitType("Code Refactoring", "refactor", "Restructuring code without changing its external behavior"), new ConventionalCommitType("Performance Improvements", "pref", "Improves performance"),