From 4705abd056abe88b1eca917b08265b18caa8a88b Mon Sep 17 00:00:00 2001 From: Yuri Weinstein Date: Wed, 29 Jul 2026 13:56:20 -0700 Subject: [PATCH] script/ptl-tool: add 'crimson', 'build/ops', 'common', 'tests' to SUPPORTED_QA_TAGS PRs carrying these GitHub labels were silently dropped from both the QA tracker's PR "Labels" column and the Redmine ticket's tag_list, since SUPPORTED_QA_TAGS is a fixed whitelist and these were never added to it despite being real, actively-used component/category labels (e.g. ceph/ceph#70661, #70658 for crimson). Signed-off-by: Yuri Weinstein --- src/script/ptl-tool.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/script/ptl-tool.py b/src/script/ptl-tool.py index 6a5cf32a9c6a..d26566155b62 100755 --- a/src/script/ptl-tool.py +++ b/src/script/ptl-tool.py @@ -127,15 +127,19 @@ except FileNotFoundError: REDMINE_API_KEY = os.getenv("PTL_TOOL_REDMINE_API_KEY", REDMINE_API_KEY) SPECIAL_BRANCHES = ('main', 'luminous', 'jewel', 'HEAD') SUPPORTED_QA_TAGS = { + 'build/ops', 'cephadm', 'cephfs', + 'common', 'core', + 'crimson', 'dashboard', 'libcephsqlite', 'nvme', 'orch', 'rbd', 'rgw', + 'tests', 'upgrades', } TEST_BRANCH = os.getenv("PTL_TOOL_TEST_BRANCH", "wip-{user}-testing-%Y%m%d.%H%M%S") -- 2.47.3