gitea-sonarqube-bot/internal/settings/pattern.go
justusbunsi 685c834b61
Allow pull request naming pattern customization (#28)
Fixes: #3

Signed-off-by: Steven Kriegler <sk.bunsenbrenner@gmail.com>
2022-06-18 14:03:56 +02:00

9 lines
107 B
Go

package settings
import "regexp"
type PatternConfig struct {
RegExp *regexp.Regexp
Template string
}