Class GitHubClient.WorkflowRunStatus

java.lang.Object
io.jenkins.plugins.ghacloud.GitHubClient.WorkflowRunStatus
Enclosing class:
GitHubClient

public static class GitHubClient.WorkflowRunStatus extends Object
Represents the status of a GitHub Actions workflow run.
  • Constructor Details

    • WorkflowRunStatus

      public WorkflowRunStatus(String status, String conclusion)
  • Method Details

    • getStatus

      public String getStatus()
    • getConclusion

      public String getConclusion()
    • isCompleted

      public boolean isCompleted()
      Returns true if the workflow run has completed (regardless of outcome).
    • isFailure

      public boolean isFailure()
      Returns true if the workflow run completed with a failure, cancellation, or timeout.