0
0
mirror of https://github.com/thegeeklab/wp-plugin-go.git synced 2024-09-21 08:12:44 +02:00
wp-plugin-go/drone/pipeline.go
2020-09-11 06:36:36 -07:00

21 lines
489 B
Go

// Copyright (c) 2019, the Drone Plugins project authors.
// Please see the AUTHORS file for details. All rights reserved.
// 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
CalVer CalVer
System System
}