fix: remove stray eprintln
All checks were successful
Rust / build (map[name:nightly]) (push) Successful in 6m16s
Rust / build (map[name:stable]) (push) Successful in 8m15s
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
Release Please / Release-plz (push) Successful in 59s
ci/woodpecker/cron/cron-docker-builder Pipeline was successful
ci/woodpecker/cron/push-next Pipeline was successful
ci/woodpecker/cron/tag-created Pipeline was successful

This commit is contained in:
Paul Campbell 2024-12-12 08:10:30 +00:00
parent 313db591b2
commit 8a877ddf63

View file

@ -66,7 +66,6 @@ impl git::ForgeLike for ForgeJo {
return Ok(Status::Pending);
};
let combined_status = response.json::<CombinedStatus>().await.unwrap_or_default();
eprintln!("combined_status: {:?}", combined_status);
let status = match combined_status.state {
ForgejoState::Success => Status::Pass,
ForgejoState::Pending | ForgejoState::Blank => Status::Pending,