Package org.kohsuke.github
Class GHEventPayload.WorkflowDispatch
- java.lang.Object
-
- org.kohsuke.github.GHEventPayload
-
- org.kohsuke.github.GHEventPayload.WorkflowDispatch
-
- Enclosing class:
- GHEventPayload
public static class GHEventPayload.WorkflowDispatch extends GHEventPayload
Occurs when someone triggered a workflow run or sends a POST request to the "Create a workflow dispatch event" endpoint.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.kohsuke.github.GHEventPayload
GHEventPayload.CheckRun, GHEventPayload.CheckSuite, GHEventPayload.CommentChanges, GHEventPayload.CommitComment, GHEventPayload.Create, GHEventPayload.Delete, GHEventPayload.Deployment, GHEventPayload.DeploymentStatus, GHEventPayload.Discussion, GHEventPayload.Fork, GHEventPayload.Installation, GHEventPayload.InstallationRepositories, GHEventPayload.Issue, GHEventPayload.IssueComment, GHEventPayload.Label, GHEventPayload.Ping, GHEventPayload.ProjectsV2Item, GHEventPayload.Public, GHEventPayload.PullRequest, GHEventPayload.PullRequestReview, GHEventPayload.PullRequestReviewComment, GHEventPayload.Push, GHEventPayload.Release, GHEventPayload.Repository, GHEventPayload.Star, GHEventPayload.Status, GHEventPayload.WorkflowDispatch, GHEventPayload.WorkflowJob, GHEventPayload.WorkflowRun
-
-
Constructor Summary
Constructors Constructor Description WorkflowDispatch()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description Map<String,Object>
getInputs()
Gets the map of input parameters passed to the workflow.String
getRef()
Gets the ref of the branch (e.g.GitHub
getRoot()
Deprecated.For access to theGitHub
instance, use a local copy instead of pulling it out of objects.String
getWorkflow()
Gets the path of the workflow file (e.g.-
Methods inherited from class org.kohsuke.github.GHEventPayload
getAction, getInstallation, getOrganization, getRepository, getSender, setOrganization, setRepository, setSender
-
-
-
-
Method Detail
-
getInputs
public Map<String,Object> getInputs()
Gets the map of input parameters passed to the workflow.- Returns:
- the map of input parameters
-
getRef
public String getRef()
Gets the ref of the branch (e.g. refs/heads/main)- Returns:
- the ref of the branch
-
getWorkflow
public String getWorkflow()
Gets the path of the workflow file (e.g. .github/workflows/hello-world-workflow.yml).- Returns:
- the path of the workflow file
-
getRoot
@Deprecated public GitHub getRoot()
Deprecated.For access to theGitHub
instance, use a local copy instead of pulling it out of objects.Get the rootGitHub
instance for this object.- Returns:
- the root
GitHub
instance
-
-