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 <yweinste@redhat.com>
This commit is contained in:
Yuri Weinstein 2026-07-29 13:56:20 -07:00
parent e82ccd0873
commit 4705abd056

View File

@ -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")