Skip to content

Commit

Permalink
Correct base/head commit being switched
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 committed Aug 19, 2024
1 parent deb9d3e commit c9617b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@ fn find_values_yaml(workspace: String, base: &str, head: &str) -> Result<Vec<Rep
name: name.clone(),
remote: util::Remote::parse(&source.repo)?,
// TODO: iterate over sources
base_commit: old_image_refs.container_images[name].sources[0].commit.clone(),
head_commit: source.commit.clone(),
base_commit: source.commit.clone(),
head_commit: old_image_refs.container_images[name].sources[0].commit.clone(),
changes: Vec::new(),
});
}
Expand Down

0 comments on commit c9617b2

Please sign in to comment.