Argo CD · Schema

v1alpha1PullRequestGeneratorFilter

PullRequestGeneratorFilter is a single pull request filter. If multiple filter types are set on a single struct, they will be AND'd together. All filters must pass for a pull request to be included.

Continuous DeliveryContainersDeploymentGitOpsKubernetesCNCFOpen Source

Properties

Name Type Description
branchMatch string
targetBranchMatch string
titleMatch string
View JSON Schema on GitHub

JSON Schema

argo-cd-v1alpha1-pull-request-generator-filter-schema.json Raw ↑
{
  "$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-pull-request-generator-filter-schema.json",
  "title": "v1alpha1PullRequestGeneratorFilter",
  "description": "PullRequestGeneratorFilter is a single pull request filter.\nIf multiple filter types are set on a single struct, they will be AND'd together. All filters must\npass for a pull request to be included.",
  "type": "object",
  "properties": {
    "branchMatch": {
      "type": "string"
    },
    "targetBranchMatch": {
      "type": "string"
    },
    "titleMatch": {
      "type": "string"
    }
  }
}