Skip to content

Commit 626574a

Browse files
committed
Add missing javadoc for GHEventPayload.WorkflowRun
1 parent 8c9eb33 commit 626574a

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/main/java/org/kohsuke/github/GHEventPayload.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1384,10 +1384,20 @@ public static class WorkflowRun extends GHEventPayload {
13841384
private GHWorkflowRun workflowRun;
13851385
private GHWorkflow workflow;
13861386

1387+
/**
1388+
* Gets the workflow run.
1389+
*
1390+
* @return the workflow run
1391+
*/
13871392
public GHWorkflowRun getWorkflowRun() {
13881393
return workflowRun;
13891394
}
13901395

1396+
/**
1397+
* Gets the associated workflow.
1398+
*
1399+
* @return the associated workflow
1400+
*/
13911401
public GHWorkflow getWorkflow() {
13921402
return workflow;
13931403
}

0 commit comments

Comments
 (0)