Compare commits

..

3 commits

Author SHA1 Message Date
de9f1ecd37 WIP: TUI actor
All checks were successful
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
2024-08-10 18:12:12 +01:00
7c0da5dc3f fix: release-plx generated PR changelog 2024-08-10 18:12:07 +01:00
f0daac76b4 feat: make forge and repo alias more prominent in email
All checks were successful
Rust / build (push) Successful in 1m17s
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
Release Please / Release-plz (push) Successful in 42s
Closes kemitix/git-next#141
2024-08-10 18:12:00 +01:00
2 changed files with 1 additions and 4 deletions

View file

@ -46,7 +46,7 @@ fn when_history_has_expired_then_message_is_passed() {
#[test] #[test]
fn when_history_has_unexpired_then_message_is_blocked() { fn when_history_has_unexpired_then_message_is_blocked() {
let dur = Duration::from_millis(1); let dur = Duration::from_secs(1);
let mut history = History::new(dur); let mut history = History::new(dur);
let user_notification = UserNotification::RepoConfigLoadFailure { let user_notification = UserNotification::RepoConfigLoadFailure {

View file

@ -1,7 +1,4 @@
// //
#[cfg(feature = "tui")]
mod tui;
mod alerts; mod alerts;
mod file_watcher; mod file_watcher;
mod forge; mod forge;