Skip to content

Commit

Permalink
rebase fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Groxx committed Sep 6, 2021
1 parent 625de8a commit 2c15cfe
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions git-cliff-core/tests/integration_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,18 @@ fn generate_changelog() -> Result<()> {
conventional_commits: true,
commit_parsers: Some(vec![
CommitParser {
message: Regex::new("^feat").ok(),
body: None,
group: Some(String::from("shiny features")),
message: Regex::new("^feat").ok(),
body: None,
group: Some(String::from("shiny features")),
default_scope: None,
skip: None,
skip: None,
},
CommitParser {
message: Regex::new("^fix").ok(),
body: None,
group: Some(String::from("fix bugs")),
message: Regex::new("^fix").ok(),
body: None,
group: Some(String::from("fix bugs")),
default_scope: None,
skip: None,
skip: None,
},
]),
filter_commits: Some(true),
Expand Down

0 comments on commit 2c15cfe

Please sign in to comment.