You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
413 B
16 lines
413 B
2 years ago
|
// Copyright 2019 the Drone Authors. All rights reserved.
|
||
|
// Use of this source code is governed by the Polyform License
|
||
|
// that can be found in the LICENSE file.
|
||
|
|
||
|
package plugin
|
||
|
|
||
|
// Secret represents a secret and its matching rules that
|
||
|
// determine whether or not a pipeline should be granted
|
||
|
// access to the secret value.
|
||
|
type Secret struct {
|
||
|
Name string
|
||
|
Value string
|
||
|
Repos []string
|
||
|
Events []string
|
||
|
}
|