From ccd890e3e1814542c281df69fc457391aadab32c Mon Sep 17 00:00:00 2001 From: Yun Peng Date: Tue, 23 Jan 2024 16:01:28 +0100 Subject: [PATCH] Fixes bcr_presubmit.py --- buildkite/bazel-central-registry/bcr_presubmit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildkite/bazel-central-registry/bcr_presubmit.py b/buildkite/bazel-central-registry/bcr_presubmit.py index e1dba846e1..48471ec9ac 100755 --- a/buildkite/bazel-central-registry/bcr_presubmit.py +++ b/buildkite/bazel-central-registry/bcr_presubmit.py @@ -412,7 +412,7 @@ def should_wait_bcr_maintainer_review(modules): validate_files_outside_of_modules_dir_are_not_modified(modules) # Check if any changes in the metadata.json file need a manual review. - needs_bcr_maintainer_review = should_metadata_change_block_presubmit() + needs_bcr_maintainer_review = should_metadata_change_block_presubmit(modules, pr_labels) # Run BCR validations on target modules and decide if the presubmit jobs should be blocked. if should_bcr_validation_block_presubmit(modules, pr_labels):