From 189b4193eecfecaf645127c90b190de23a703e34 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Fri, 29 Mar 2024 13:02:13 +0000 Subject: [PATCH] ci_run_n_monitor: explain how to pass multiple targets without having to use regexes Fixes: 6825c67c991fc1fc6192 ("ci_run_n_monitor: allow passing multiple targets") Part-of: --- bin/ci/ci_run_n_monitor.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/ci/ci_run_n_monitor.py b/bin/ci/ci_run_n_monitor.py index 49f9b9db08b..6ead6c6ec96 100755 --- a/bin/ci/ci_run_n_monitor.py +++ b/bin/ci/ci_run_n_monitor.py @@ -289,7 +289,8 @@ def parse_args() -> None: parser.add_argument( "--target", metavar="target-job", - help="Target job regex. For multiple targets, separate with pipe | character", + help="Target job regex. For multiple targets, pass multiple values, " + "eg. `--target foo bar`.", required=True, nargs=argparse.ONE_OR_MORE, )