diff --git a/packages/bruno-cli/src/commands/run.js b/packages/bruno-cli/src/commands/run.js index ca3e315dd..1adde3e1e 100644 --- a/packages/bruno-cli/src/commands/run.js +++ b/packages/bruno-cli/src/commands/run.js @@ -250,7 +250,11 @@ const builder = async (yargs) => { ) .example('$0 run --client-cert-config client-cert-config.json', 'Run a request with Client certificate configurations') .example('$0 run folder --delay delayInMs', 'Run a folder with given miliseconds delay between each requests.') - .example('$0 run --noproxy', 'Run requests with system proxy disabled'); + .example('$0 run --noproxy', 'Run requests with system proxy disabled') + .example( + '$0 run folder --tags=hello,world --exclude-tags=skip', + 'Run only requests with tags "hello" or "world" and exclude any request with tag "skip".' + ); }; const handler = async function (argv) {