Issue #3387400: GitlabCI should fetch less from git
1 unresolved thread
Merge request reports
Activity
mentioned in merge request !4748
- Resolved by Andrey Postnikov
mentioned in merge request !4765
250 250 <<: [ *with-yarn-cache, *default-job-settings ] 251 251 stage: 🪄 Lint 252 252 script: 253 - git fetch origin 254 - export MODIFIED=`git diff --name-only origin/${CI_MERGE_REQUEST_TARGET_BRANCH_NAME}${CI_COMMIT_BRANCH}|while read r;do echo "$CI_PROJECT_DIR/$r";done|tr "\n" " "` 253 - export TARGET_BRANCH=${CI_MERGE_REQUEST_TARGET_BRANCH_NAME}${CI_COMMIT_BRANCH} 254 - git fetch -vn --depth=3 "${CI_MERGE_REQUEST_PROJECT_URL:-origin}" "+refs/heads/$TARGET_BRANCH:refs/heads/$TARGET_BRANCH" changed this line in version 7 of the diff
Please register or sign in to reply