diff --git a/pkg/config/config.go b/pkg/config/config.go index 1dd8adb09..16c38de06 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -520,12 +520,12 @@ type GitLabMonitor struct { StripPrefix string `json:"strip-prefix,omitempty" yaml:"strip-prefix,omitempty"` // If the version in GitLab contains a suffix which should be ignored StripSuffix string `json:"strip-suffix,omitempty" yaml:"strip-suffix,omitempty"` - // Prefix filter to apply when searching tags on a GitHub repository + // Prefix filter to apply when searching tags on a GitLab repository TagFilterPrefix string `json:"tag-filter-prefix,omitempty" yaml:"tag-filter-prefix,omitempty"` - // Filter to apply when searching tags on a GitHub repository + // Filter to apply when searching tags on a GitLab repository 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 + // Override the default of using a GitLab release to identify related tag to + // fetch. Not all projects use GitLab releases but just use tags UseTags bool `json:"use-tag,omitempty" yaml:"use-tag,omitempty"` } diff --git a/pkg/config/schema.json b/pkg/config/schema.json index 4a1b15e0c..f34665ca6 100644 --- a/pkg/config/schema.json +++ b/pkg/config/schema.json @@ -269,15 +269,15 @@ }, "tag-filter-prefix": { "type": "string", - "description": "Prefix filter to apply when searching tags on a GitHub repository" + "description": "Prefix filter to apply when searching tags on a GitLab repository" }, "tag-filter-contains": { "type": "string", - "description": "Filter to apply when searching tags on a GitHub repository" + "description": "Filter to apply when searching tags on a GitLab repository" }, "use-tag": { "type": "boolean", - "description": "Override the default of using a GitHub release to identify related tag to\nfetch. Not all projects use GitHub releases but just use tags" + "description": "Override the default of using a GitLab release to identify related tag to\nfetch. Not all projects use GitLab releases but just use tags" } }, "additionalProperties": false,