Compare commits

..

No commits in common. "8cf18db314a7c3dc7d0c3927d448342336f0a2a2" and "267351963ff855619b92384e7335cdb9d69d82b9" have entirely different histories.

4 changed files with 4 additions and 4 deletions

View file

@ -1,7 +1,7 @@
--- ---
name: Bug name: Bug
about: Create a bug report to help us improve Lprs about: Create a bug report to help us improve Lprs
title: '...' title: '[Bug]: ...'
labels: ["Kind/Bug"] labels: ["Kind/Bug"]
assignees: '' assignees: ''
--- ---

View file

@ -1,7 +1,7 @@
--- ---
name: Question name: Question
about: Ask a question about Lprs about: Ask a question about Lprs
title: '...' title: '[Question]: ...'
labels: ["Kind/Question"] labels: ["Kind/Question"]
assignees: '' assignees: ''
--- ---

View file

@ -1,7 +1,7 @@
--- ---
name: Typo report name: Typo report
about: Report a typo in the documentation or the code about: Report a typo in the documentation or the code
title: '...' title: '[Typo]: ...'
labels: ["Kind/Documentation"] labels: ["Kind/Documentation"]
assignees: '' assignees: ''
--- ---

View file

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