Compare commits

..

2 commits

Author SHA1 Message Date
8cf18db314
chore(cliff): Fix typo in an comment
All checks were successful
Write changelog / write-changelog (push) Successful in 3s
Rust CI / Rust CI (push) Successful in 1m19s
2024-04-30 16:11:41 +03:00
b78cd67e26
chore(issue-templates): Remove labels from issues title 2024-04-30 16:08:20 +03:00
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: '[Bug]: ...'
title: '...'
labels: ["Kind/Bug"]
assignees: ''
---

View file

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

View file

@ -1,7 +1,7 @@
---
name: Typo report
about: Report a typo in the documentation or the code
title: '[Typo]: ...'
title: '...'
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 GitHub, 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 Forgejo, so this will also link to PRs)
{pattern = ' +$', replace = ""}, # Remove trailing whitespace.
{pattern = ' +', replace = " "}, # Replace multiple spaces with a single space.
]