Skip to content

Commit f35c880

Browse files
committed
Trim try-job names
1 parent 8ccaf48 commit f35c880

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ci/citool/src/main.rs

+1-1
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)