diff --git a/Cargo.lock b/Cargo.lock index 557ece1..3b8c9bd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -566,7 +566,7 @@ checksum = "f3a87b616e37e93c22fb19bcd386f02f3af5ea98a25670ad0fce773de23c5e68" [[package]] name = "hubcaps" version = "0.3.16" -source = "git+https://github.com/grahamc/hubcaps.git#22ab34e2dc8804deebb5dd7ad9b796268f405780" +source = "git+https://github.com/grahamc/hubcaps.git#de1e1521ee78b5df5e1435619c8e1b90c932d36b" dependencies = [ "error-chain", "frank_jwt", diff --git a/default.nix b/default.nix index 7ceba4a..fd05850 100644 --- a/default.nix +++ b/default.nix @@ -34,7 +34,7 @@ let cargoLock = { lockFile = ./Cargo.lock; outputHashes = { - "hubcaps-0.3.16" = "sha256-fM0i8XTMyCuGtuHrhy1KNk+sJQ/clPnz4bjQkXkfslw="; + "hubcaps-0.3.16" = "sha256-/BFXGccu27K8heK4IL7JnS/U7zatTk9wRybhtxppADM="; }; }; }; diff --git a/ofborg/src/message/buildresult.rs b/ofborg/src/message/buildresult.rs index 59498b6..69768b4 100644 --- a/ofborg/src/message/buildresult.rs +++ b/ofborg/src/message/buildresult.rs @@ -28,7 +28,7 @@ impl From for String { impl From for Conclusion { fn from(status: BuildStatus) -> Conclusion { match status { - BuildStatus::Skipped => Conclusion::Neutral, + BuildStatus::Skipped => Conclusion::Skipped, BuildStatus::Success => Conclusion::Success, BuildStatus::Failure => Conclusion::Neutral, BuildStatus::HashMismatch => Conclusion::Failure, diff --git a/ofborg/src/tasks/githubcommentposter.rs b/ofborg/src/tasks/githubcommentposter.rs index de4bc81..0cdad0d 100644 --- a/ofborg/src/tasks/githubcommentposter.rs +++ b/ofborg/src/tasks/githubcommentposter.rs @@ -687,7 +687,7 @@ patching script interpreter paths in /nix/store/pcja75y9isdvgz5i00pkrpif9rxzxc29 started_at: None, completed_at: Some("2023-04-20T13:37:42Z".to_string()), status: Some(CheckRunState::Completed), - conclusion: Some(Conclusion::Neutral), + conclusion: Some(Conclusion::Skipped), details_url: Some("https://logs.nix.ci/?key=nixos/nixpkgs.2345&attempt_id=neatattemptid".to_string()), external_id: Some("neatattemptid".to_string()), head_sha: "abc123".to_string(), @@ -740,7 +740,7 @@ foo started_at: None, completed_at: Some("2023-04-20T13:37:42Z".to_string()), status: Some(CheckRunState::Completed), - conclusion: Some(Conclusion::Neutral), + conclusion: Some(Conclusion::Skipped), details_url: Some("https://logs.nix.ci/?key=nixos/nixpkgs.2345&attempt_id=neatattemptid".to_string()), external_id: Some("neatattemptid".to_string()), head_sha: "abc123".to_string(),