Compare commits
1 commit
renovate/d
...
main
Author | SHA1 | Date | |
---|---|---|---|
8a877ddf63 |
3 changed files with 2 additions and 3 deletions
|
@ -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.1.0
|
image: docker.io/woodpeckerci/plugin-docker-buildx:5.0.0
|
||||||
settings:
|
settings:
|
||||||
username: kemitix
|
username: kemitix
|
||||||
repo: git.kemitix.net/kemitix/git-next
|
repo: git.kemitix.net/kemitix/git-next
|
||||||
|
|
|
@ -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.1.0
|
image: docker.io/woodpeckerci/plugin-docker-buildx:5.0.0
|
||||||
settings:
|
settings:
|
||||||
username: kemitix
|
username: kemitix
|
||||||
repo: git.kemitix.net/kemitix/git-next
|
repo: git.kemitix.net/kemitix/git-next
|
||||||
|
|
|
@ -66,7 +66,6 @@ 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,
|
||||||
|
|
Loading…
Reference in a new issue