We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97e472f commit 293692dCopy full SHA for 293692d
notify.go
@@ -88,7 +88,7 @@ func (r *Receiver) Notify(data *alertmanager.Data) (bool, error) {
88
// Add Labels
89
if r.conf.AddGroupLabels {
90
for k, v := range data.GroupLabels {
91
- issue.Fields.Labels = append(issue.Fields.Labels, fmt.Sprintf("%s=\"%q\"", k, v))
+ issue.Fields.Labels = append(issue.Fields.Labels, fmt.Sprintf("%s=%q", k, v))
92
}
93
94
0 commit comments