diff --git a/git-cliff-core/src/config.rs b/git-cliff-core/src/config.rs index fa6edaf5fa..5b7d51066c 100644 --- a/git-cliff-core/src/config.rs +++ b/git-cliff-core/src/config.rs @@ -59,11 +59,11 @@ pub struct GitConfig { pub filter_commits: Option, /// Blob pattern for git tags. pub tag_pattern: Option, - #[serde(with = "serde_regex", default)] /// Regex to skip matched tags. - pub skip_tags: Option, #[serde(with = "serde_regex", default)] + pub skip_tags: Option, /// Regex to ignore matched tags. + #[serde(with = "serde_regex", default)] pub ignore_tags: Option, /// Whether to sort tags topologically. pub topo_order: Option,