drone-plugin-lib/drone/pipeline.go

22 lines
479 B
Go
Raw Permalink Normal View History

2022-05-03 22:03:37 +02:00
// Copyright (c) 2019, Drone Plugins project authors
// Copyright (c) 2021, Robert Kaussow <mail@thegeeklab.de>
// 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 {
Build Build
Repo Repo
Commit Commit
Stage Stage
Step Step
SemVer SemVer
2020-09-11 15:36:36 +02:00
CalVer CalVer
System System
}