Compare commits

..

2 commits

Author SHA1 Message Date
134ed92f3d feat(tui): hightlight status message in colour
All checks were successful
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
2024-08-31 09:31:27 +01:00
a87241c3d1 fix(repo): avoid blocking threads when pausing
Some checks failed
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
Rust / build (push) Failing after 7m1s
2024-08-31 09:31:27 +01:00
2 changed files with 2 additions and 2 deletions

View file

@ -71,7 +71,7 @@ fn full_message(user_notification: &UserNotification) -> String {
let sha = commit.sha(); let sha = commit.sha();
let message = commit.message(); let message = commit.message();
[ [
"CI Checks have Failed".to_string(), "CI Checks had Failed".to_string(),
format!("Forge: {forge_alias}\nRepo : {repo_alias}"), format!("Forge: {forge_alias}\nRepo : {repo_alias}"),
format!("Commit:\n - {sha}\n - {message}"), format!("Commit:\n - {sha}\n - {message}"),
"Log:".to_string(), "Log:".to_string(),

View file

@ -43,7 +43,7 @@ async fn should_fetch_then_push_then_revalidate() -> TestResult {
}, },
)) ))
.await?; .await?;
actix_rt::time::sleep(Duration::from_millis(9)).await; actix_rt::time::sleep(Duration::from_millis(1)).await;
System::current().stop(); System::current().stop();
//then //then