From 91a4fbf866a7265f68ea6e0d226abdc308751489 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 5 Mar 2026 01:07:28 +0000 Subject: [PATCH 1/2] build(deps): Update cliclack requirement from 0.3.7 to 0.4.0 Updates the requirements on [cliclack](https://github.com/fadeevab/cliclack) to permit the latest version. - [Commits](https://github.com/fadeevab/cliclack/commits) --- updated-dependencies: - dependency-name: cliclack dependency-version: 0.4.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- backpack/lib/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backpack/lib/Cargo.toml b/backpack/lib/Cargo.toml index f05edf2..1ff4301 100644 --- a/backpack/lib/Cargo.toml +++ b/backpack/lib/Cargo.toml @@ -61,7 +61,7 @@ clap_complete = "4.5.65" strum = { version = "0.27.2", features = ["derive"] } git2 = { workspace = true } chrono = "0.4.42" -cliclack = "0.3.7" +cliclack = "0.4.0" terminal-banner = { workspace = true } tracing-subscriber = { workspace = true, features = ["env-filter"] } auth-git2 = "0.5.8" From efcb2bb5dbd2d1898224f5e54c76c1861cf7c7e0 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Thu, 5 Mar 2026 05:28:57 +0000 Subject: [PATCH 2/2] fix(ci): [autofix.ci] apply automated fixes --- backpack/cli/src/commands/merge/mod.rs | 6 +----- backpack/cli/src/main.rs | 2 +- backpack/lib/src/utils/mod.rs | 2 +- 3 files changed, 3 insertions(+), 7 deletions(-) diff --git a/backpack/cli/src/commands/merge/mod.rs b/backpack/cli/src/commands/merge/mod.rs index fb99719..abf2c66 100644 --- a/backpack/cli/src/commands/merge/mod.rs +++ b/backpack/cli/src/commands/merge/mod.rs @@ -5,11 +5,7 @@ use rootcause::prelude::*; use rootcause_backtrace::BacktraceCollector; use tracing::instrument; -use github_bot_lib::{ - cli::Args, - utils::get_repo, - github, -}; +use github_bot_lib::{cli::Args, github, utils::get_repo}; #[instrument(level = "debug", target = "errors::rootcause", name = "run")] pub fn run(target: Option) -> anyhow::Result<()> { diff --git a/backpack/cli/src/main.rs b/backpack/cli/src/main.rs index 9aa2c4c..219d1ed 100644 --- a/backpack/cli/src/main.rs +++ b/backpack/cli/src/main.rs @@ -157,7 +157,7 @@ async fn main() -> anyhow::Result<()> { .unwrap_or_default(), }, ) - .await; + .await; merge::run(target_repo)?; diff --git a/backpack/lib/src/utils/mod.rs b/backpack/lib/src/utils/mod.rs index a5e05f1..682cd57 100644 --- a/backpack/lib/src/utils/mod.rs +++ b/backpack/lib/src/utils/mod.rs @@ -1,5 +1,5 @@ +use anyhow::{Context, Result, bail}; use dialoguer::Input; -use anyhow::{bail, Result, Context}; use std::process::Command; /// Check if current directory is inside a git repo