Package org.kohsuke.github
Class GHCheckRunBuilder
- java.lang.Object
-
- org.kohsuke.github.GHCheckRunBuilder
-
@Preview(ANTIOPE) @Deprecated public final class GHCheckRunBuilder extends Object
Deprecated.Drafts or updates a check run.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classGHCheckRunBuilder.ActionDeprecated.static classGHCheckRunBuilder.AnnotationDeprecated.static classGHCheckRunBuilder.ImageDeprecated.static classGHCheckRunBuilder.OutputDeprecated.
-
Field Summary
Fields Modifier and Type Field Description protected GHRepositoryrepoDeprecated.protected org.kohsuke.github.RequesterrequesterDeprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description GHCheckRunBuilderadd(GHCheckRunBuilder.Action action)Deprecated.GHCheckRunBuilderadd(GHCheckRunBuilder.Output output)Deprecated.GHCheckRuncreate()Deprecated.Actually creates the check run.GHCheckRunBuilderwithCompletedAt(Date completedAt)Deprecated.GHCheckRunBuilderwithConclusion(GHCheckRun.Conclusion conclusion)Deprecated.GHCheckRunBuilderwithDetailsURL(String detailsURL)Deprecated.GHCheckRunBuilderwithExternalID(String externalID)Deprecated.GHCheckRunBuilderwithStartedAt(Date startedAt)Deprecated.GHCheckRunBuilderwithStatus(GHCheckRun.Status status)Deprecated.
-
-
-
Field Detail
-
repo
protected final GHRepository repo
Deprecated.
-
requester
protected final org.kohsuke.github.Requester requester
Deprecated.
-
-
Method Detail
-
withDetailsURL
@NonNull public GHCheckRunBuilder withDetailsURL(@CheckForNull String detailsURL)
Deprecated.
-
withExternalID
@NonNull public GHCheckRunBuilder withExternalID(@CheckForNull String externalID)
Deprecated.
-
withStatus
@NonNull public GHCheckRunBuilder withStatus(@CheckForNull GHCheckRun.Status status)
Deprecated.
-
withConclusion
@NonNull public GHCheckRunBuilder withConclusion(@CheckForNull GHCheckRun.Conclusion conclusion)
Deprecated.
-
withStartedAt
@NonNull public GHCheckRunBuilder withStartedAt(@CheckForNull Date startedAt)
Deprecated.
-
withCompletedAt
@NonNull public GHCheckRunBuilder withCompletedAt(@CheckForNull Date completedAt)
Deprecated.
-
add
@NonNull public GHCheckRunBuilder add(@NonNull GHCheckRunBuilder.Output output)
Deprecated.
-
add
@NonNull public GHCheckRunBuilder add(@NonNull GHCheckRunBuilder.Action action)
Deprecated.
-
create
@NonNull public GHCheckRun create() throws IOException
Deprecated.Actually creates the check run. (If more than fifty annotations were requested, this is done in batches.)- Returns:
- the resulting run
- Throws:
IOException- for the usual reasons
-
-