Skip to content

Commit

Permalink
[fix](pipeline) update check-pr-if-need-run-build.sh (#24515)
Browse files Browse the repository at this point in the history
update check-pr-if-need-run-build.sh
  • Loading branch information
hello-stephen authored Sep 18, 2023
1 parent 9a47e8f commit dcabc06
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ https://github.com/apache/doris/pull/${PULL_NUMBER}/files all change files:
}

_only_modified_regression_conf() {
if [[ -n ${added_files} ]]; then echo "Not only modified regression conf, find added files" && return 1; fi
if [[ -n ${added_files} || -n ${removed_files} ]]; then echo "Not only modified regression conf, find added/removed files" && return 1; fi
for f in ${modified_files}; do
if [[ "${f}" == "regression-test/pipeline/p0/conf/regression-conf.groovy" ]] ||
[[ "${f}" == "regression-test/pipeline/p1/conf/regression-conf.groovy" ]]; then
Expand Down

0 comments on commit dcabc06

Please sign in to comment.