Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Builder ¶
type Builder struct { Summary string Status Status Conclusion Conclusion // contains filtered or unexported fields }
func NewBuilder ¶
func (*Builder) CheckRunCreate ¶
func (b *Builder) CheckRunCreate() *github.CreateCheckRunOptions
CheckRun returns a GitHub CheckRun object with the current state of the Builder.
If the Summary field is empty, it will be set to the name field. If the Conclusion field is set, the CheckRun will be marked as completed.
func (*Builder) CheckRunUpdate ¶
func (b *Builder) CheckRunUpdate() *github.UpdateCheckRunOptions
type Conclusion ¶
type Conclusion string
const ( ConclusionActionRequired Conclusion = "action_required" ConclusionCancelled Conclusion = "cancelled" ConclusionFailure Conclusion = "failure" // ConclusionNeutral is the default, and is sufficient to pass a required check. ConclusionNeutral Conclusion = "neutral" ConclusionSuccess Conclusion = "success" ConclusionTimedOut Conclusion = "timed_out" // ConclusionSkipped is not sufficient to pass a required check. ConclusionSkipped Conclusion = "skipped" )
Click to show internal directories.
Click to hide internal directories.