fix(项目管理-流水线):启动流水线执行记录任务传参修正

This commit is contained in:
wanjia 2024-07-18 15:02:13 +08:00
parent ae14fb47d1
commit 40f4c917ce
1 changed files with 1 additions and 1 deletions

View File

@ -369,7 +369,7 @@ public class PmsGitLinkRequestUrl extends GitLinkRequestUrl {
}
public static GitLinkRequestUrl RUN_PIPELINE_RUNS_JOB(String owner, String repoIdentifier, String workflow, String ref){
return getGitLinkRequestUrl(String.format("/api/v1/{owner}/{repo}/actions/runs?workflow=%s&ref=%s", owner, repoIdentifier, workflow, ref));
return getGitLinkRequestUrl(String.format("/api/v1/%s/%s/actions/runs?workflow=%s&ref=%s", owner, repoIdentifier, workflow, ref));
}
public static GitLinkRequestUrl RERUN_ALL_JOBS_IN_PIPELINE_RUN(String owner, String repoIdentifier, String run){