From 9195ece50aa2ebb2ad5c5f526a24f85e1e129b6b Mon Sep 17 00:00:00 2001 From: Frank O'Hara Date: Wed, 26 Aug 2026 16:06:35 -0600 Subject: [PATCH 1/2] fix(lint): resolve useless_format flagged by current stable clippy format!("{}", path) -> path.to_string() in tokens.rs. New stable clippy (1.90) fails the Lint job on -D warnings; main last passed on the previous toolchain. --- crates/lash-agent/src/tokens.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/lash-agent/src/tokens.rs b/crates/lash-agent/src/tokens.rs index a819674..2c17f58 100644 --- a/crates/lash-agent/src/tokens.rs +++ b/crates/lash-agent/src/tokens.rs @@ -61,7 +61,7 @@ pub fn summarize_task_file( }; let mut parts = vec![ - format!("{}", path), + path.to_string(), format!("{} tasks", total_tasks), format!("{}% complete", completion_pct), ]; From a79b6f3009ed4a38ac6c77eaece81bc8445c0d66 Mon Sep 17 00:00:00 2001 From: Frank O'Hara Date: Wed, 26 Aug 2026 16:07:19 -0600 Subject: [PATCH 2/2] =?UTF-8?q?ci:=20retrigger=20=E2=80=94=20push=20event?= =?UTF-8?q?=20was=20not=20delivered?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit