java.lang.Object
cd.go.contrib.plugins.configrepo.groovy.dsl.Filter

public class Filter extends Object
The Filter element specifies files in changesets that should not trigger a pipeline automatically. When a pipeline is triggered by files that are not ignored the filtered files will still be updated with other files. You can only define one filter under each SCM material. When you trigger a pipeline manually, it will update to most recent revision, including filtered files.

/*
 * Copyright 2022 Thoughtworks, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */


  materials {
    git {
      url = 'https://github.com/gocd/gocd'
      blacklist = ['docs/**/*.*', 'README.md']
    }
    git {
      url = 'https://github.com/gocd/gocd-plugins'
      whitelist = ['src']
    }
  }

  • Constructor Details

    • Filter

      public Filter(List<String> items)
    • Filter

      public Filter(boolean isWhitelist, List<String> items)
  • Method Details

    • deepClone

      public Filter deepClone()
    • isWhitelist

      public boolean isWhitelist()
    • getItems

      public List<String> getItems()
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object