Compare commits
1 commit
main
...
renovate/d
Author | SHA1 | Date | |
---|---|---|---|
|
fa1cf88563 |
3 changed files with 3 additions and 2 deletions
|
@ -4,7 +4,7 @@ steps:
|
|||
- event: push
|
||||
branch: next
|
||||
# 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:
|
||||
username: kemitix
|
||||
repo: git.kemitix.net/kemitix/git-next
|
||||
|
|
|
@ -4,7 +4,7 @@ steps:
|
|||
- event: tag
|
||||
ref: refs/tags/v*
|
||||
# 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:
|
||||
username: kemitix
|
||||
repo: git.kemitix.net/kemitix/git-next
|
||||
|
|
|
@ -66,6 +66,7 @@ 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,
|
||||
|
|
Loading…
Reference in a new issue