We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16ac6e3 commit 0a5e5edCopy full SHA for 0a5e5ed
pkg/config.go
@@ -38,6 +38,7 @@ type issuectlConfig struct {
38
Profiles map[ProfileName]*Profile `yaml:"profiles,omitempty"`
39
Backends map[BackendConfigName]*BackendConfig `yaml:"backends,omitempty"`
40
GitUsers map[GitUserName]*GitUser `yaml:"gitUsers,omitempty"`
41
+ Config TextConfig `yaml:"config,omitempty"`
42
43
_persistenceMode string `yaml:"-"`
44
}
pkg/types.go
@@ -85,3 +85,9 @@ type IssueConfig struct {
85
Dir string `yaml:"dir"`
86
Profile ProfileName `yaml:"profile"`
87
88
+
89
+type TextConfig struct {
90
+ StartMessage string `yaml:"startMessage"`
91
+ CloseMessage string `yaml:"closeMessage"`
92
+ OpenPRMessage string `yaml:"openPRMessage"`
93
+}
0 commit comments