Compare commits

..

1 commit

Author SHA1 Message Date
Renovate Bot
fa1cf88563 chore(deps): update docker.io/woodpeckerci/plugin-docker-buildx docker tag to v5.1.0
Some checks failed
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
Rust / build (map[name:nightly]) (pull_request) Failing after 12s
ci/woodpecker/pr/cron-docker-builder Pipeline was successful
ci/woodpecker/pr/push-next Pipeline was successful
ci/woodpecker/pr/tag-created Pipeline was successful
Rust / build (map[name:stable]) (pull_request) Successful in 9m1s
2024-12-07 10:01:24 +00:00
3 changed files with 3 additions and 2 deletions

View file

@ -4,7 +4,7 @@ steps:
- event: push - event: push
branch: next branch: next
# INFO: https://woodpecker-ci.org/plugins/Docker%20Buildx # INFO: https://woodpecker-ci.org/plugins/Docker%20Buildx
image: docker.io/woodpeckerci/plugin-docker-buildx:5.0.0 image: docker.io/woodpeckerci/plugin-docker-buildx:5.1.0
settings: settings:
username: kemitix username: kemitix
repo: git.kemitix.net/kemitix/git-next repo: git.kemitix.net/kemitix/git-next

View file

@ -4,7 +4,7 @@ steps:
- event: tag - event: tag
ref: refs/tags/v* ref: refs/tags/v*
# INFO: https://woodpecker-ci.org/plugins/Docker%20Buildx # INFO: https://woodpecker-ci.org/plugins/Docker%20Buildx
image: docker.io/woodpeckerci/plugin-docker-buildx:5.0.0 image: docker.io/woodpeckerci/plugin-docker-buildx:5.1.0
settings: settings:
username: kemitix username: kemitix
repo: git.kemitix.net/kemitix/git-next repo: git.kemitix.net/kemitix/git-next

View file

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