mirror of
https://codeberg.org/gitnex/tea4j-autodeploy
synced 2026-06-17 15:10:40 +00:00
Synchronizing API and documentation updates
This commit is contained in:
@@ -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<Void>
|
||||
*/
|
||||
@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
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user