Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ jobs:
- name: 'Checkout Repository'
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: 'Dependency Review'
uses: actions/dependency-review-action@3c4e3dcb1aa7874d2c16be7d79418e9b7efd6261 # v4.8.2
uses: actions/dependency-review-action@05fe4576374b728f0c523d6a13d64c25081e0803 # v4.8.3
6 changes: 1 addition & 5 deletions backpack/cli/src/commands/merge/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<String>) -> anyhow::Result<()> {
Expand Down
2 changes: 1 addition & 1 deletion backpack/cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ async fn main() -> anyhow::Result<()> {
.unwrap_or_default(),
},
)
.await;
.await;

merge::run(target_repo)?;

Expand Down
2 changes: 1 addition & 1 deletion backpack/lib/src/utils/mod.rs
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Loading