fix(backend-gitlab): skip creating a CI pipeline when rebasing merge request (#4802)
Fixes #4786; see further https://docs.gitlab.com/ee/api/merge_requests.html#rebase-a-merge-request
This commit is contained in:
parent
a92d53f889
commit
ce11dd2375
@ -678,7 +678,7 @@ export default class API {
|
||||
async rebaseMergeRequest(mergeRequest: GitLabMergeRequest) {
|
||||
let rebase: GitLabMergeRebase = await this.requestJSON({
|
||||
method: 'PUT',
|
||||
url: `${this.repoURL}/merge_requests/${mergeRequest.iid}/rebase`,
|
||||
url: `${this.repoURL}/merge_requests/${mergeRequest.iid}/rebase?skip_ci=true`,
|
||||
});
|
||||
|
||||
let i = 1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user