Skip to content
Snippets Groups Projects
Commit d35e8bb2 authored by jurgenhaas's avatar jurgenhaas
Browse files

general#17 Add "--retry 2" to all curl commands

parent 28650454
No related branches found
No related tags found
No related merge requests found
......@@ -43,7 +43,7 @@ CollectConfig:
- merge
- TARGETBRANCH=main merge
- |
curl --fail -X DELETE -s -H "PRIVATE-TOKEN: ${GITLAB_PRIVATE_TOKEN}" "https://${CI_SERVER_HOST}/api/v4/projects/${CI_PROJECT_ID}/repository/branches/cc-${CI_JOB_ID}"
curl --fail --retry 2 -X DELETE -s -H "PRIVATE-TOKEN: ${GITLAB_PRIVATE_TOKEN}" "https://${CI_SERVER_HOST}/api/v4/projects/${CI_PROJECT_ID}/repository/branches/cc-${CI_JOB_ID}"
cache: {}
only:
refs:
......
......@@ -4,6 +4,6 @@
rules:
- if: $CI_PIPELINE_SOURCE == "schedule"
after_script:
- curl --fail https://gitlab.lakedrops.com/gitlab-ci-cd/drupal/-/raw/main/scripts/mr-proposed-changes.sh -o /tmp/mr-proposed-changes.sh
- curl --fail --retry 2 https://gitlab.lakedrops.com/gitlab-ci-cd/drupal/-/raw/main/scripts/mr-proposed-changes.sh -o /tmp/mr-proposed-changes.sh
- chmod +x /tmp/mr-proposed-changes.sh
- HOST=${CI_PROJECT_URL} CI_PROJECT_ID=${CI_PROJECT_ID} CI_COMMIT_REF_NAME=${CI_COMMIT_REF_NAME} GITLAB_USER_ID=${GITLAB_USER_ID} GITLAB_USER_LOGIN=${GITLAB_USER_LOGIN} GITLAB_USER_NAME=${GITLAB_USER_NAME} GITLAB_USER_EMAIL=${GITLAB_USER_EMAIL} ACCESS_TOKEN=${ACCESS_TOKEN} /tmp/mr-proposed-changes.sh
......@@ -40,7 +40,7 @@ git commit -am "GitLab CI proposed changes"
git push -u mr ${SOURCE_BRANCH}
# Create MR
curl --fail -X POST "${HOST}${CI_PROJECT_ID}/merge_requests" \
curl --fail --retry 2 -X POST "${HOST}${CI_PROJECT_ID}/merge_requests" \
--header "PRIVATE-TOKEN:${ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--data "${BODY}";
......
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