github.com/abayer/test-infra@v0.0.5/prow/hook/plugins.go (about)

     1  /*
     2  Copyright 2016 The Kubernetes Authors.
     3  
     4  Licensed under the Apache License, Version 2.0 (the "License");
     5  you may not use this file except in compliance with the License.
     6  You may obtain a copy of the License at
     7  
     8      http://www.apache.org/licenses/LICENSE-2.0
     9  
    10  Unless required by applicable law or agreed to in writing, software
    11  distributed under the License is distributed on an "AS IS" BASIS,
    12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    13  See the License for the specific language governing permissions and
    14  limitations under the License.
    15  */
    16  
    17  package hook
    18  
    19  // All enabled plugins. We need to empty import them like this so that they
    20  // will be linked into any hook binary.
    21  import (
    22  	_ "k8s.io/test-infra/prow/plugins/approve"
    23  	_ "k8s.io/test-infra/prow/plugins/assign"
    24  	_ "k8s.io/test-infra/prow/plugins/blockade"
    25  	_ "k8s.io/test-infra/prow/plugins/blunderbuss"
    26  	_ "k8s.io/test-infra/prow/plugins/buildifier"
    27  	_ "k8s.io/test-infra/prow/plugins/cat"
    28  	_ "k8s.io/test-infra/prow/plugins/cla"
    29  	_ "k8s.io/test-infra/prow/plugins/docs-no-retest"
    30  	_ "k8s.io/test-infra/prow/plugins/dog"
    31  	_ "k8s.io/test-infra/prow/plugins/golint"
    32  	_ "k8s.io/test-infra/prow/plugins/heart"
    33  	_ "k8s.io/test-infra/prow/plugins/help"
    34  	_ "k8s.io/test-infra/prow/plugins/hold"
    35  	_ "k8s.io/test-infra/prow/plugins/label"
    36  	_ "k8s.io/test-infra/prow/plugins/lgtm"
    37  	_ "k8s.io/test-infra/prow/plugins/lifecycle"
    38  	_ "k8s.io/test-infra/prow/plugins/milestone"
    39  	_ "k8s.io/test-infra/prow/plugins/milestonestatus"
    40  	_ "k8s.io/test-infra/prow/plugins/override"
    41  	_ "k8s.io/test-infra/prow/plugins/owners-label"
    42  	_ "k8s.io/test-infra/prow/plugins/releasenote"
    43  	_ "k8s.io/test-infra/prow/plugins/requiresig"
    44  	_ "k8s.io/test-infra/prow/plugins/shrug"
    45  	_ "k8s.io/test-infra/prow/plugins/sigmention"
    46  	_ "k8s.io/test-infra/prow/plugins/size"
    47  	_ "k8s.io/test-infra/prow/plugins/skip"
    48  	_ "k8s.io/test-infra/prow/plugins/slackevents"
    49  	_ "k8s.io/test-infra/prow/plugins/stage"
    50  	_ "k8s.io/test-infra/prow/plugins/trigger"
    51  	_ "k8s.io/test-infra/prow/plugins/updateconfig"
    52  	_ "k8s.io/test-infra/prow/plugins/verify-owners"
    53  	_ "k8s.io/test-infra/prow/plugins/wip"
    54  	_ "k8s.io/test-infra/prow/plugins/yuks"
    55  )