We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b5318c commit 6a41c3fCopy full SHA for 6a41c3f
src/ci/citool/src/main.rs
@@ -359,7 +359,9 @@ fn main() -> anyhow::Result<()> {
359
let gh_ctx = load_github_ctx()
360
.context("Cannot load environment variables from GitHub Actions")?;
361
let channel = read_to_string(Path::new(CI_DIRECTORY).join("channel"))
362
- .context("Cannot read channel file")?;
+ .context("Cannot read channel file")?
363
+ .trim()
364
+ .to_string();
365
366
calculate_job_matrix(load_db(jobs_path)?, gh_ctx, &channel)
367
.context("Failed to calculate job matrix")?;
0 commit comments