Skip to content
Snippets Groups Projects
Unverified Commit e1ec04ef authored by Bob van de Vijver's avatar Bob van de Vijver Committed by GitHub
Browse files

fix: use small delay before posting branch status to gitlab (#8759) (#8771)

parent 71184049
No related branches found
No related tags found
No related merge requests found
......@@ -684,6 +684,9 @@ export async function setBranchStatus({
options.target_url = targetUrl;
}
try {
// give gitlab some time to create pipelines for the sha
await delay(1000);
await gitlabApi.postJson(url, { body: options });
// update status cache
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment