Skip to content

Commit

Permalink
chore: commit pareser fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Miguel Ramos committed Sep 23, 2024
1 parent 7192b3d commit 098df0a
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/conventional.rs
Original file line number Diff line number Diff line change
Expand Up @@ -196,10 +196,7 @@ fn define_config(
..CommitParser::default()
},
CommitParser {
message: Some(
Regex::new("^refactor\\(clippy\\)")
.expect("failed to compile regex"),
),
message: Regex::new("^refactor\\(clippy\\)").ok(),
skip: Some(true),
..CommitParser::default()
},
Expand Down

0 comments on commit 098df0a

Please sign in to comment.