diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 449d1a0..ab67f8b 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -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). diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/fix.yml similarity index 88% rename from .github/ISSUE_TEMPLATE/bug.yml rename to .github/ISSUE_TEMPLATE/fix.yml index ff33cfa..26a7cc3 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/fix.yml @@ -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: @@ -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 diff --git a/.github/workflows/issue-labeler.yml b/.github/workflows/issue-labeler.yml index 9484009..7baec0e 100644 --- a/.github/workflows/issue-labeler.yml +++ b/.github/workflows/issue-labeler.yml @@ -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" }