Skip to content

Commit

Permalink
[autofix.ci] apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Dec 11, 2024
1 parent 6907045 commit 2d88e83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/gh-workflow/src/generate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ fn organize_job_dependency(mut workflow: Workflow) -> Workflow {
let mut job_ids = Vec::<String>::new();
for job in dep_jobs.iter() {
// If the job is already available
if let Some(id) = find_value(job, &new_jobs).or(find_value(job, &old_jobs)) {
if let Some(id) = find_value(job, &new_jobs).or(find_value(job, old_jobs)) {
job_ids.push(id.to_owned());
} else {
// Create a job-id for the job
Expand Down

0 comments on commit 2d88e83

Please sign in to comment.