-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #142 from ashvardanian/main-dev
- Loading branch information
Showing
6 changed files
with
209 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
name: Report a bug | ||
description: Something doesn't work as expected? | ||
title: "Bug: " | ||
labels: ["bug"] | ||
assignees: | ||
- octocat | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
If you have a small question, it may be faster to ask the maintainers on [Discord](https://discord.gg/4mxGrenbNt). | ||
- type: textarea | ||
id: what | ||
attributes: | ||
label: Describe the bug | ||
placeholder: A short description of what the bug is. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: steps | ||
attributes: | ||
label: Steps to reproduce | ||
placeholder: Detail the steps taken to reproduce the behavior. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: Expected behavior | ||
placeholder: A clear and concise description of what you expected to happen. | ||
validations: | ||
required: true | ||
- type: input | ||
id: version | ||
attributes: | ||
label: StringZilla version | ||
placeholder: vX.Y.Z | ||
validations: | ||
required: true | ||
- type: input | ||
id: os | ||
attributes: | ||
label: Operating System | ||
placeholder: Ubuntu 22.04 | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: hardware | ||
attributes: | ||
label: Hardware architecture | ||
options: | ||
- x86 | ||
- Arm | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: frontend | ||
attributes: | ||
label: Which interface are you using? | ||
options: | ||
- C implementation | ||
- C++ bindings | ||
- Python bindings | ||
- Rust bindings | ||
- Other bindings | ||
validations: | ||
required: true | ||
- type: input | ||
id: contact | ||
attributes: | ||
label: Contact Details | ||
description: How can we get in touch with you if we need more info? | ||
placeholder: [email protected] | ||
validations: | ||
required: false | ||
- type: checkboxes | ||
id: mentions | ||
attributes: | ||
label: Are you open to being tagged as a contributor? | ||
description: Sometimes, a bug report is just as valuable as a patch 🤗 | ||
options: | ||
- label: I am open to being mentioned in the project `.git` history as a contributor | ||
required: false | ||
- type: checkboxes | ||
id: duplicate | ||
attributes: | ||
label: Is there an existing issue for this? | ||
description: Please search [our issues](https://github.com/ashvardanian/stringzilla/issues) to see if this bug already exists. | ||
options: | ||
- label: I have searched the existing issues | ||
required: true | ||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Code of Conduct | ||
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/ashvardanian/stringzilla/blob/main/CODE_OF_CONDUCT.md) | ||
options: | ||
- label: I agree to follow this project's Code of Conduct | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: 💬 Ask on Discord | ||
url: https://discord.gg/A6wxt6dS9j | ||
about: Real-time communication with maintainers, contributors, and broader community |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
name: Request a feature | ||
description: Something we haven't implemented yet? | ||
title: "Feature: " | ||
labels: ["enhancement"] | ||
assignees: | ||
- octocat | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this feature request! | ||
We have already scheduled a few features for our [next milestone](https://github.com/ashvardanian/stringzilla/milestones). | ||
- type: textarea | ||
id: what | ||
attributes: | ||
label: Describe what you are looking for | ||
placeholder: A short description of what the feature would look like, ideally with code examples. | ||
validations: | ||
required: true | ||
- type: checkboxes | ||
id: check | ||
attributes: | ||
label: Can you contribute to the implementation? | ||
options: | ||
- label: I can contribute | ||
- type: dropdown | ||
id: interface | ||
attributes: | ||
label: Is your feature request specific to a certain interface? | ||
options: | ||
- It applies to everything | ||
- C implementation | ||
- C++ bindings | ||
- Python bindings | ||
- Other bindings | ||
- Other | ||
validations: | ||
required: true | ||
- type: input | ||
id: contact | ||
attributes: | ||
label: Contact Details | ||
description: How can we get in touch with you if we need more info? | ||
placeholder: [email protected] | ||
validations: | ||
required: false | ||
- type: checkboxes | ||
id: duplicate | ||
attributes: | ||
label: Is there an existing issue for this? | ||
description: Please search [our issues](https://github.com/ashvardanian/stringzilla/issues) to see if this bug already exists. | ||
options: | ||
- label: I have searched the existing issues | ||
required: true | ||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Code of Conduct | ||
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/ashvardanian/stringzilla/blob/main/CODE_OF_CONDUCT.md) | ||
options: | ||
- label: I agree to follow this project's Code of Conduct | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters