From 62895d1a4464ec87169f33979a4257cf2283d7fa Mon Sep 17 00:00:00 2001 From: Hansong Zhang Date: Wed, 17 Sep 2025 12:46:03 -0700 Subject: [PATCH] Add a CP category examples and test/ci. Guideline says we can CP `Bug fixes in demos/examples. No new features/experiments` and `Test/CI fixes` --- .github/scripts/cherry_pick.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/scripts/cherry_pick.py b/.github/scripts/cherry_pick.py index 1239ee030dd..8de5279f51b 100755 --- a/.github/scripts/cherry_pick.py +++ b/.github/scripts/cherry_pick.py @@ -39,7 +39,15 @@ def parse_args() -> Any: ) parser.add_argument( "--classification", - choices=["regression", "critical", "fixnewfeature", "docs", "release"], + choices=[ + "regression", + "critical", + "fixnewfeature", + "docs", + "release", + "examples", + "testci", + ], required=True, help="the cherry pick category", )