-
Notifications
You must be signed in to change notification settings - Fork 11
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 #39 from machineagency/bsubbaraman-issue-templates
Add issue templates
- Loading branch information
Showing
5 changed files
with
69 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,36 @@ | ||
name: 🔎 Bug Report | ||
description: This template is for reporting broken or incorrect behaviour. If you have questions about your own code, please ask on our Lab Automation Discord instead! | ||
labels: [Bug] | ||
body: | ||
- type: input | ||
attributes: | ||
label: Duet3D Firmware Version | ||
description: You can find this in the response to an `M115` command. | ||
|
||
- type: textarea | ||
attributes: | ||
label: Steps to reproduce this bug | ||
description: Include a simple code snippet that demonstrates the problem if relevant, along with any errors produced. If this isn't possible, then simply describe the issue as best you can! | ||
value: "### Steps: | ||
1. | ||
2. | ||
3. | ||
.... | ||
### Snippet: | ||
```python | ||
// Paste your code here :) | ||
```" | ||
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,5 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: ⚡ Discord | ||
url: https://discord.gg/Ntx2arK5WS | ||
about: If you have general questions or want to chat informally, join our Lab Automation Discord! |
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,10 @@ | ||
name: 🗣️ Discussion | ||
description: This template is for starting a discussion. | ||
labels: [discussion] | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: Topic | ||
description: What do you want to discuss with the group? | ||
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,9 @@ | ||
name: 🦾 Existing Feature Enhancement | ||
description: This template is for suggesting an improvement for an existing feature. | ||
labels: [enhancement] | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: Feature enhancement details | ||
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,9 @@ | ||
name: 🌱 New Feature Request | ||
description: This template is for requesting a new feature be added. | ||
labels: [feature request] | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: Feature request details | ||
validations: | ||
required: true |