From 7d661bb8e3f3ce64a93330132fd956c857b657fd Mon Sep 17 00:00:00 2001 From: AarDG10 Date: Mon, 9 Feb 2026 14:40:46 +0530 Subject: [PATCH] ci: skip auto postgres test run --- .github/helper/roulette.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/helper/roulette.py b/.github/helper/roulette.py index 5b966f82f4..8d13a9543e 100644 --- a/.github/helper/roulette.py +++ b/.github/helper/roulette.py @@ -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):