Skip to content

Commit 2bc6303

Browse files
Remove compact run watch output
1 parent e64c92a commit 2bc6303

2 files changed

Lines changed: 1 addition & 11 deletions

File tree

.github/workflows/internal-tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ jobs:
9797
gh run watch "$RUN_ID" \
9898
--repo "$TARGET_OWNER/$TARGET_REPO" \
9999
--exit-status \
100-
--compact \
101100
--interval 30
102101
103102
- name: Cancel invoked run if workflow cancelled

tools/release/src/targets/github_release.rs

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -70,16 +70,7 @@ impl GithubRelease {
7070
}
7171

7272
fn wait_for_workflow(&self, run_id: &str) -> Result<(), String> {
73-
let cmd = cmd!(
74-
"gh",
75-
"run",
76-
"watch",
77-
run_id,
78-
"--repo",
79-
REPO,
80-
"--exit-status",
81-
"--compact"
82-
);
73+
let cmd = cmd!("gh", "run", "watch", run_id, "--repo", REPO, "--exit-status");
8374
println!("$> {:?}", cmd);
8475
cmd.run()
8576
.map(|_| ())

0 commit comments

Comments
 (0)