chore: don't log success
All checks were successful
ci/woodpecker/push/tag-created Pipeline was successful
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful

This commit is contained in:
Paul Campbell 2024-04-12 19:43:21 +01:00
parent ee9cc53540
commit 223dd426c6

View file

@ -184,18 +184,13 @@ pub async fn advance_main(
git: Git,
) {
info!("Advancing main to next");
match git.reset(
if let Err(err) = git.reset(
&repo_config.branches().main(),
next.into(),
ResetForce::None,
&repo_details,
) {
Ok(_) => {
info!("Success");
}
Err(err) => {
warn!(?err, "Failed")
}
warn!(?err, "Failed")
};
}