Synchronizing API and documentation updates

This commit is contained in:
gitnexbot
2025-07-11 00:05:48 +00:00
parent e22c13460e
commit a5d000f0a9
2 changed files with 6 additions and 5 deletions
@@ -15,6 +15,7 @@ import org.gitnex.tea4j.v2.models.ActionWorkflowJob;
import org.gitnex.tea4j.v2.models.ActionWorkflowJobsResponse;
import org.gitnex.tea4j.v2.models.ActionWorkflowResponse;
import org.gitnex.tea4j.v2.models.ActionWorkflowRun;
import org.gitnex.tea4j.v2.models.ActionWorkflowRunsResponse;
import org.gitnex.tea4j.v2.models.Activity;
import org.gitnex.tea4j.v2.models.AddCollaboratorOption;
import org.gitnex.tea4j.v2.models.AnnotatedTag;
@@ -538,10 +539,10 @@ public interface RepositoryApi {
* @param headSha triggering sha of the workflow run (optional)
* @param page page number of results to return (1-based) (optional)
* @param limit page size of results (optional)
* @return Call<ActionArtifactsResponse>
* @return Call<ActionWorkflowRunsResponse>
*/
@GET("repos/{owner}/{repo}/actions/runs")
Call<ActionArtifactsResponse> getWorkflowRuns(
Call<ActionWorkflowRunsResponse> getWorkflowRuns(
@retrofit2.http.Path("owner") String owner,
@retrofit2.http.Path("repo") String repo,
@retrofit2.http.Query("event") String event,