From c3f4b1a7db057c0c2b15f1e95292d8e99ee3a4b5 Mon Sep 17 00:00:00 2001 From: Sergi Blanch-Torne Date: Mon, 30 Jun 2025 12:13:22 +0200 Subject: [PATCH] ci: crnm: rev argument for tags and branches The --rev argument mentions that it accepts a git revision. I think it would be practical to describe that it accepts a commit id, as well as a tag or branch name. Signed-off-by: Sergi Blanch-Torne Part-of: --- bin/ci/ci_run_n_monitor.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bin/ci/ci_run_n_monitor.py b/bin/ci/ci_run_n_monitor.py index 024b9a45f5e..d58d7da6631 100755 --- a/bin/ci/ci_run_n_monitor.py +++ b/bin/ci/ci_run_n_monitor.py @@ -498,7 +498,9 @@ def parse_args() -> argparse.Namespace: mutex_group1 = parser.add_mutually_exclusive_group() mutex_group1.add_argument( - "--rev", default="HEAD", metavar="revision", help="repository git revision (default: HEAD)" + "--rev", + default="HEAD", + help="Repository git commit-ish, tag or branch name (default: HEAD)", ) mutex_group1.add_argument( "--pipeline-url",