Skip to content

Commit 40561cd

Browse files
authored
Disable skipping tests based on git changes (#9078)
1 parent e68b605 commit 40561cd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.gitlab-ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,8 @@ default:
121121

122122
.gitlab_base_ref_params: &gitlab_base_ref_params
123123
- |
124-
if [[ ! $CI_COMMIT_BRANCH =~ ^(master|release/.*)$ ]]; then
124+
# FIXME: Disabled until we find a way to not hit GitHub API rate limit
125+
if false && [[ ! $CI_COMMIT_BRANCH =~ ^(master|release/.*)$ ]]; then
125126
export GIT_BASE_REF=$(.gitlab/find-gh-base-ref.sh)
126127
if [[ -n "$GIT_BASE_REF" ]]; then
127128
export GRADLE_PARAMS="$GRADLE_PARAMS -PgitBaseRef=origin/$GIT_BASE_REF"

0 commit comments

Comments
 (0)