Skip to content

Commit 162591d

Browse files
authored
feat: add issue templates (#75)
* chore: add IDE configs to .gitignore * feat: add template for bug report in the guide * feat: add template for additions request in the guide * feat: add config for issue template chooser
1 parent 20f4789 commit 162591d

File tree

4 files changed

+30
-1
lines changed

4 files changed

+30
-1
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: 🐛 Bug Report
2+
description: Use this template to report a bug in the guide
3+
labels: [bug, documentation]
4+
body:
5+
- type: textarea
6+
attributes:
7+
label: Description
8+
description: |
9+
**CLEARY DESCRIBE A BUG IN THE GUIDE YOU ARE REPORTING, YOU CAN ADD PICTURES IF YOU WANT TO:**
10+
validations:
11+
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Official WWebJS Discord Server
4+
url: https://discord.gg/H7DqQs4
5+
about: Please ask and answer questions here.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: 📚 Guide Additions Request
2+
description: Use this template to suggest additions for the guide
3+
labels: [documentation, enhancement]
4+
body:
5+
- type: textarea
6+
attributes:
7+
label: Description
8+
description: |
9+
**CLEARY DESCRIBE GUIDE ADDITIONS YOU ARE REQUESTING, YOU CAN ADD PICTURES IF YOU WANT TO:**
10+
validations:
11+
required: true

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@
22
node_modules/
33
package-lock.json
44
.cache/
5-
.temp/
5+
.temp/
6+
.idea
7+
.vscode

0 commit comments

Comments
 (0)