diff --git a/cliff.toml b/cliff.toml index df52e20..d7abad7 100644 --- a/cliff.toml +++ b/cliff.toml @@ -70,7 +70,7 @@ filter_unconventional = true split_commits = false # regex for preprocessing the commit messages commit_preprocessors = [ - {pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([**#${2}**](/issues/${2}))"}, # replace issue numbers (Note the PR is also an issue in GitHub, so this will also link to PRs) + {pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([**#${2}**](/issues/${2}))"}, # replace issue numbers (Note the PR is also an issue in Forgejo, so this will also link to PRs) {pattern = ' +$', replace = ""}, # Remove trailing whitespace. {pattern = ' +', replace = " "}, # Replace multiple spaces with a single space. ]