Merge pull request #36881 from AarDG10/skip-pg-ci

ci: skip auto postgres test run
This commit is contained in:
Aarol D'Souza 2026-02-09 14:51:14 +05:30 committed by GitHub
commit 4996babdba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -182,10 +182,7 @@ if __name__ == "__main__":
only_frontend_code_changed = len(list(filter(is_frontend_code, files_list))) == len(files_list)
updated_py_file_count = len(list(filter(is_server_side_code, files_list)))
only_py_changed = updated_py_file_count == len(files_list)
run_postgres = (
has_label(pr_number, "postgres", repo) or
matches_postgres_filenames(files_list)
)
run_postgres = has_label(pr_number, "postgres", repo)
# Check for Skip CI label and other conditions
if has_skip_ci_label(pr_number, repo):