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
about: Create a bug report to help us improve Lprs
title: '...'
title: '[Bug]: ...'
labels: ["Kind/Bug"]
assignees: ''
---

View file

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

View file

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

View file

@ -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}**](<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 = " "}, # Replace multiple spaces with a single space.
]