Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Change the bug prefix to fix and improve the To Reproduce section description #190

Merged
merged 1 commit into from
Dec 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,4 +134,4 @@ Example: `fix: dependabot.yml contained invalid details`
As we cannot verify the origin of contributors' code, please submit an [issue](https://github.com/kurosakishigure/katharsis/issues) if our project violates any applicable licenses.

> - To request additional License information, please [Report an issue with the documentation](https://github.com/kurosakishigure/katharsis/issues/new?assignees=&labels=documentation&projects=&template=doc.yml).
> - To request the removal of specific code, please [Report an issue](https://github.com/kurosakishigure/katharsis/issues/new?assignees=&labels=bug&projects=&template=bug.yml).
> - To request the removal of specific code, please [Report an issue](https://github.com/kurosakishigure/katharsis/issues/new?assignees=&labels=bug&projects=&template=fix.yml).
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: Report an issue
description: Report a Katharsis issue.
title: 'bug: '
title: 'fix: '
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
Thanks for taking the time to fill out this fix report!
- type: input
id: katharsis_version
attributes:
Expand All @@ -26,7 +26,7 @@ body:
id: to_reproduce
attributes:
label: To Reproduce
description: A step-by-step description of how to reproduce the issue, based on the linked reproduction.
description: A step-by-step description of how to reproduce the issue. Contributors are encouraged to include a link-based reproduction if possible.
validations:
required: true
- type: textarea
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/issue-labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
label:
- { prefix: "bug:", name: "bug" }
- { prefix: "fix:", name: "bug" }
- { prefix: "doc:", name: "documentation" }
- { prefix: "feat:", name: "enhancement" }
- { prefix: "ex:", name: "example" }
Expand Down
Loading