2022-05-03 20:03:37 +00:00
|
|
|
// Copyright (c) 2019, Drone Plugins project authors
|
|
|
|
// Copyright (c) 2021, Robert Kaussow <mail@thegeeklab.de>
|
|
|
|
|
2019-12-20 20:47:50 +00:00
|
|
|
// Use of this source code is governed by an Apache 2.0 license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
package drone
|
|
|
|
|
|
|
|
// Pipeline being executed.
|
|
|
|
//
|
|
|
|
// Represents the full Drone environment that the plugin is executing in.
|
|
|
|
type Pipeline struct {
|
2020-01-20 21:58:54 +00:00
|
|
|
Build Build
|
|
|
|
Repo Repo
|
|
|
|
Commit Commit
|
|
|
|
Stage Stage
|
|
|
|
Step Step
|
|
|
|
SemVer SemVer
|
2020-09-11 13:36:36 +00:00
|
|
|
CalVer CalVer
|
2020-01-20 21:58:54 +00:00
|
|
|
System System
|
2019-12-20 20:47:50 +00:00
|
|
|
}
|