Skip to content

Commit be7a7e7

Browse files
committed
Hooked up WorkflowRunsClient in the ActionsClient.
1 parent 228ea7e commit be7a7e7

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/main/java/com/spotify/github/v3/clients/ActionsClient.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,13 @@ static ActionsClient create(final GitHubClient github, final String owner, final
4343
public WorkflowsClient createWorkflowsClient() {
4444
return WorkflowsClient.create(github, owner, repo);
4545
}
46+
47+
/**
48+
* Workflow Runs API client
49+
*
50+
* @return WorkflowRuns API client
51+
*/
52+
public WorkflowRunsClient createWorkflowRunsClient() {
53+
return WorkflowRunsClient.create(github, owner, repo);
54+
}
4655
}

0 commit comments

Comments
 (0)