From 1a48f137fde4933609372e89e2c4ceaf70d317b3 Mon Sep 17 00:00:00 2001 From: Andrew Dawson Date: Thu, 7 Aug 2025 17:17:21 -0400 Subject: [PATCH 1/4] Update USAGE.md w/more clear relaunch instructions --- USAGE.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/USAGE.md b/USAGE.md index 3c7df47f..5be191c0 100644 --- a/USAGE.md +++ b/USAGE.md @@ -395,6 +395,8 @@ $ tw runs list --filter="*man/rnaseq-*" Run `tw runs relaunch -h` to view all the required and optional fields for relaunching a run in a workspace. +**TL;DR:** This is how you relaunch a run: `tw runs relaunch -i --workspace `. + ### Cancel a run Run `tw runs cancel -h` to view all the required and optional fields for canceling a run in a workspace. From 7c9ad96634474a4e1cf2e3fbf1058b5974f19b60 Mon Sep 17 00:00:00 2001 From: Andrew Dawson Date: Mon, 11 Aug 2025 12:31:25 -0400 Subject: [PATCH 2/4] Update USAGE.md Co-authored-by: Rob Newman <61608+robnewman@users.noreply.github.com> --- USAGE.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/USAGE.md b/USAGE.md index 5be191c0..1709567d 100644 --- a/USAGE.md +++ b/USAGE.md @@ -395,7 +395,9 @@ $ tw runs list --filter="*man/rnaseq-*" Run `tw runs relaunch -h` to view all the required and optional fields for relaunching a run in a workspace. -**TL;DR:** This is how you relaunch a run: `tw runs relaunch -i --workspace `. +In the example below, we relaunch a run with ID `3S3KzAasBa4Bt3` in workspace `my-workspace`: +```console +tw runs relaunch -i 3S3KzAasBa4Bt3 -w my-workspace ### Cancel a run From e7597dcbc93177bc4793b3db45216c7a03041d85 Mon Sep 17 00:00:00 2001 From: Jordi Deu-Pons Date: Thu, 21 May 2026 16:56:29 +0200 Subject: [PATCH 3/4] Close fenced code block and add shell prompt Without the closing ``` fence, the rest of USAGE.md from "### Cancel a run" onward was rendered as code. Adds the missing fence and prefixes the example with $ to match the convention used elsewhere in the file. --- USAGE.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/USAGE.md b/USAGE.md index 1709567d..44cef619 100644 --- a/USAGE.md +++ b/USAGE.md @@ -397,7 +397,8 @@ Run `tw runs relaunch -h` to view all the required and optional fields for relau In the example below, we relaunch a run with ID `3S3KzAasBa4Bt3` in workspace `my-workspace`: ```console -tw runs relaunch -i 3S3KzAasBa4Bt3 -w my-workspace +$ tw runs relaunch -i 3S3KzAasBa4Bt3 -w my-workspace +``` ### Cancel a run From 33af1d9f35151615f30bc31bcd4ad9dd76374131 Mon Sep 17 00:00:00 2001 From: Jordi Deu-Pons Date: Thu, 21 May 2026 17:04:45 +0200 Subject: [PATCH 4/4] Fix markdownlint MD014 and MD031 - MD031: add blank line before the fenced code block - MD014: drop the $ prefix since the example doesn't show output --- USAGE.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/USAGE.md b/USAGE.md index 44cef619..d8fdcc32 100644 --- a/USAGE.md +++ b/USAGE.md @@ -396,8 +396,9 @@ $ tw runs list --filter="*man/rnaseq-*" Run `tw runs relaunch -h` to view all the required and optional fields for relaunching a run in a workspace. In the example below, we relaunch a run with ID `3S3KzAasBa4Bt3` in workspace `my-workspace`: + ```console -$ tw runs relaunch -i 3S3KzAasBa4Bt3 -w my-workspace +tw runs relaunch -i 3S3KzAasBa4Bt3 -w my-workspace ``` ### Cancel a run