Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add issue templates #39

Merged
merged 9 commits into from
Dec 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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