Skip to content

Commit 3b5318c

Browse files
committed
Trim try-job names
1 parent dfd0f9a commit 3b5318c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ci/citool/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ impl GitHubContext {
136136
if let Some(ref msg) = self.commit_message {
137137
msg.lines()
138138
.filter_map(|line| line.trim().strip_prefix("try-job: "))
139-
.map(|l| l.to_string())
139+
.map(|l| l.trim().to_string())
140140
.collect()
141141
} else {
142142
vec![]

0 commit comments

Comments
 (0)