-
Notifications
You must be signed in to change notification settings - Fork 12
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 #114 from nbro/issue-100-templates
Add issues, pull request and release templates
- Loading branch information
Showing
4 changed files
with
125 additions
and
0 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,53 @@ | ||
name: Bug Report | ||
|
||
description: File a bug report | ||
|
||
title: "[Bug]: " | ||
labels: ["bug"] | ||
projects: ["andz"] | ||
|
||
assignees: | ||
- nbro | ||
|
||
body: | ||
|
||
- type: dropdown | ||
id: andz-version | ||
attributes: | ||
label: andz version | ||
description: Which andz version are you using? | ||
options: | ||
- "0.1.0" | ||
default: 0 | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: python-version | ||
attributes: | ||
label: Python version | ||
description: Which Python version are you using? | ||
options: | ||
- "3.9" | ||
- "3.10" | ||
- "3.11" | ||
- "3.12" | ||
default: 0 | ||
validations: | ||
required: true | ||
|
||
|
||
- type: textarea | ||
id: bug-description | ||
attributes: | ||
label: Bug description | ||
description: What is the bug? | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: code | ||
attributes: | ||
label: Code | ||
description: Paste any relevant code | ||
render: python |
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,32 @@ | ||
name: New Feature | ||
|
||
description: Suggest a new feature | ||
|
||
title: "[Feature]: " | ||
labels: ["feature"] | ||
projects: ["andz"] | ||
|
||
assignees: | ||
- nbro | ||
|
||
body: | ||
|
||
- type: dropdown | ||
id: feature-type | ||
attributes: | ||
label: Feature type | ||
description: Is the new feature an algorithm or a data structure? | ||
options: | ||
- Algorithm | ||
- Data structure | ||
default: 0 | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: feature-description | ||
attributes: | ||
label: Feature description | ||
description: Describe the feature and why it should be implemented | ||
validations: | ||
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,13 @@ | ||
# Pull Request | ||
|
||
Closes # | ||
|
||
<!-- | ||
Use closes #X or fixes #X if this pull request closes or fixes issue number X. | ||
For more details, see | ||
https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue. | ||
Provide a brief description for this PR. | ||
Provide more details, if the linked issue does not provide them or there is no linked issue. | ||
--> |
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,27 @@ | ||
changelog: | ||
|
||
categories: | ||
- title: Breaking Changes 🛠 | ||
labels: | ||
- breaking | ||
- title: New Features 🎉 | ||
labels: | ||
- feature | ||
- title: Algorithms | ||
labels: | ||
- algorithms | ||
- title: Data structures | ||
labels: | ||
- data-structures | ||
- title: Dependencies 📌 | ||
labels: | ||
- dependencies | ||
- title: Testing ✅ | ||
labels: | ||
- testing | ||
- title: Documentation 📖 | ||
labels: | ||
- documentation | ||
- title: Other Changes | ||
labels: | ||
- "*" |