diff --git a/pkg/config/config.go b/pkg/config/config.go index 4276a6c57..28c27aee9 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -414,6 +414,10 @@ type GitHubMonitor struct { StripSuffix string `json:"strip-suffix,omitempty" yaml:"strip-suffix,omitempty"` // Filter to apply when searching tags on a GitHub repository TagFilter string `json:"tag-filter,omitempty" yaml:"tag-filter,omitempty"` + // Filter to apply when searching tags on a GitHub repository + TagFilterPrefix string `json:"tag-filter-prefix,omitempty" yaml:"tag-filter-prefix,omitempty"` + // Filter to search tags on the Github tag results + TagFilterContains string `json:"tag-filter-contains,omitempty" yaml:"tag-filter-contains,omitempty"` // Override the default of using a GitHub release to identify related tag to // fetch. Not all projects use GitHub releases but just use tags UseTags bool `json:"use-tag,omitempty" yaml:"use-tag,omitempty"`