Skip to content

Commit

Permalink
Merge pull request #39 from machineagency/bsubbaraman-issue-templates
Browse files Browse the repository at this point in the history
Add issue templates
  • Loading branch information
bsubbaraman authored Dec 7, 2023
2 parents 39ba333 + ace363c commit 2ba5f19
Show file tree
Hide file tree
Showing 5 changed files with 69 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yml
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
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
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!
10 changes: 10 additions & 0 deletions .github/ISSUE_TEMPLATE/discussion.yml
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
9 changes: 9 additions & 0 deletions .github/ISSUE_TEMPLATE/existing-feature-enhancement.yml
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
9 changes: 9 additions & 0 deletions .github/ISSUE_TEMPLATE/feature-request.yml
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

0 comments on commit 2ba5f19

Please sign in to comment.