Synchronizing API and documentation updates

This commit is contained in:
gitnexbot
2026-03-22 00:02:14 +00:00
parent 92e681e348
commit 75d24290ab
2 changed files with 106 additions and 0 deletions
@@ -3049,6 +3049,20 @@ public interface RepositoryApi {
Call<IssueConfigValidation> repoValidateIssueConfig(
@retrofit2.http.Path("owner") String owner, @retrofit2.http.Path("repo") String repo);
/**
* Reruns all failed jobs in a workflow run
*
* @param owner owner of the repo (required)
* @param repo name of the repository (required)
* @param run id of the run (required)
* @return Call&lt;Void&gt;
*/
@POST("repos/{owner}/{repo}/actions/runs/{run}/rerun-failed-jobs")
Call<Void> rerunFailedWorkflowRun(
@retrofit2.http.Path("owner") String owner,
@retrofit2.http.Path("repo") String repo,
@retrofit2.http.Path("run") Integer run);
/**
* Reruns a specific workflow job in a run
*