mirror of
https://github.com/thegeeklab/drone-plugin-lib.git
synced 2024-11-05 23:00:39 +00:00
a20f13fdb0
I have split the code into various files and beside that I have also used more flat package structure. I have removed the whole constants for flag names and environment variables, since nobody got to write these flags manually anyway as all these variables are assigned to structs all can benefit form code completion while this lib stays more readable. Signed-off-by: Thomas Boerger <thomas@webhippie.de>
21 lines
498 B
Go
21 lines
498 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 {
|
|
Network Network
|
|
Build Build
|
|
Repo Repo
|
|
Commit Commit
|
|
Stage Stage
|
|
Step Step
|
|
SemVer SemVer
|
|
System System
|
|
}
|