SCMProviderGeneratorFilter is a single repository filter. If multiple filter types are set on a single struct, they will be AND'd together. All filters must pass for a repo to be included.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/argo-cd/refs/heads/main/json-schema/argo-cd-v1alpha1-scm-provider-generator-filter-schema.json",
"title": "v1alpha1SCMProviderGeneratorFilter",
"description": "SCMProviderGeneratorFilter is a single repository filter.\nIf multiple filter types are set on a single struct, they will be AND'd together. All filters must\npass for a repo to be included.",
"type": "object",
"properties": {
"branchMatch": {
"description": "A regex which must match the branch name.",
"type": "string"
},
"labelMatch": {
"description": "A regex which must match at least one label.",
"type": "string"
},
"pathsDoNotExist": {
"description": "An array of paths, all of which must not exist.",
"type": "array",
"items": {
"type": "string"
}
},
"pathsExist": {
"description": "An array of paths, all of which must exist.",
"type": "array",
"items": {
"type": "string"
}
},
"repositoryMatch": {
"description": "A regex for repo names.",
"type": "string"
}
}
}