Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .kokoro/system.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,11 @@ for dir in `find 'packages' -type d -wholename 'packages/*/tests/system'`; do
# Get the path to the package by removing the suffix /tests/system
package=$(echo $dir | cut -f -2 -d '/')

files_to_check=${package}/CHANGELOG.md
if [[ $package = @(*google-cloud-bigquery-storage*) ]]; then
files_to_check=${package}
else
files_to_check=${package}/CHANGELOG.md
fi

echo "checking changes with 'git diff "${KOKORO_GITHUB_PULL_REQUEST_TARGET_BRANCH}...${KOKORO_GITHUB_PULL_REQUEST_COMMIT}" -- ${files_to_check}'"
set +e
Expand Down
Loading