From 684df939751100696f23c219319a62d736749a96 Mon Sep 17 00:00:00 2001 From: Catherine Lee Date: Mon, 13 Oct 2025 16:12:35 +0000 Subject: [PATCH] [CI] Default keep-going true for tags of form ciflow/something/commitsha (#165180) Tags of the form `ciflow/something/commitsha` are usually created by running the workflow from HUD Pull Request resolved: https://github.com/pytorch/pytorch/pull/165180 Approved by: https://github.com/huydhn --- .github/scripts/filter_test_configs.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/scripts/filter_test_configs.py b/.github/scripts/filter_test_configs.py index 81756ccc49ea..592c7aab6d93 100755 --- a/.github/scripts/filter_test_configs.py +++ b/.github/scripts/filter_test_configs.py @@ -512,6 +512,8 @@ def perform_misc_tasks( "keep-going", branch == MAIN_BRANCH or bool(tag and re.match(r"^trunk/[a-f0-9]{40}$", tag)) + # Pattern for tags created via manual run on HUD + or bool(tag and re.match(r"^ciflow/[^/]+/[a-f0-9]{40}$", tag)) or check_for_setting(labels, pr_body, "keep-going"), ) set_output(