diff --git a/pkg/config/config.go b/pkg/config/config.go index 3f21541bc..721196f32 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -523,12 +523,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 8671835a2..0f917b9f8 100644 --- a/pkg/config/schema.json +++ b/pkg/config/schema.json @@ -266,15 +266,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,