2022-02-10 22:06:57 +00:00
|
|
|
//go:build !change
|
2021-02-18 19:47:04 +00:00
|
|
|
// +build !change
|
|
|
|
|
|
|
|
package ciletters
|
|
|
|
|
|
|
|
type Notification struct {
|
|
|
|
Project GitlabProject
|
|
|
|
Branch string
|
|
|
|
Commit Commit
|
|
|
|
Pipeline Pipeline
|
|
|
|
}
|
|
|
|
|
|
|
|
type GitlabProject struct {
|
|
|
|
GroupID string
|
|
|
|
ID string
|
|
|
|
}
|
|
|
|
|
|
|
|
type Commit struct {
|
|
|
|
// Hash is a 20-byte SHA-1 encoded in hex.
|
|
|
|
Hash string
|
|
|
|
Message string
|
|
|
|
Author string
|
|
|
|
}
|
|
|
|
|
|
|
|
type PipelineStatus string
|
|
|
|
|
|
|
|
const (
|
|
|
|
PipelineStatusOK PipelineStatus = "ok"
|
|
|
|
PipelineStatusFailed PipelineStatus = "failed"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Pipeline struct {
|
|
|
|
Status PipelineStatus
|
|
|
|
ID int64
|
|
|
|
TriggeredBy string
|
|
|
|
FailedJobs []Job
|
|
|
|
}
|
|
|
|
|
|
|
|
type Job struct {
|
|
|
|
ID int64
|
|
|
|
Name string
|
|
|
|
Stage string
|
|
|
|
RunnerLog string
|
|
|
|
}
|