Skip to content

Commit cfb4672

Browse files
committed
chore: added new issues templates
1 parent 8449584 commit cfb4672

File tree

3 files changed

+116
-31
lines changed

3 files changed

+116
-31
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 0 additions & 31 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/HOW-DO-I.yml

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
---
2+
name: How do I?
3+
description: Ask a question around how to do a task using the SDK
4+
title: "How Do I: "
5+
labels: ["question"]
6+
assignees: ["manchuck", "dragonmantank"]
7+
body:
8+
- type: input
9+
id: question
10+
attributes:
11+
label: How do I
12+
description: Ask the question on how to do X with Y
13+
placeholder: send a WhatsApp Message
14+
validations:
15+
required: true
16+
- type: dropdown
17+
id: product
18+
attributes:
19+
label: API/Product
20+
description: Which API or Product do yo need help with?
21+
multiple: false
22+
options:
23+
- "Accounts"
24+
- "Applications"
25+
- "Audit"
26+
- "Authentication"
27+
- "Conversation"
28+
- "Media"
29+
- "Meetings"
30+
- "Messages"
31+
- "Number Insight V2"
32+
- "Number Insights"
33+
- "Numbers"
34+
- "Pricing"
35+
- "Proactive Connect"
36+
- "Redact"
37+
- "SMS"
38+
- "Sub Accounts"
39+
- "Users"
40+
- "Verify V2"
41+
- "Verify"
42+
- "Video"
43+
- "Voice"
44+
- "Webhooks"
45+
- "Other"
46+
validations:
47+
required: true
48+
- type: textarea
49+
id: code_sample
50+
attributes:
51+
label: Code Sample
52+
description: If you already have some code, please provide a sample to help
53+
answer the question

.github/ISSUE_TEMPLATE/NEW-ISSUE.yml

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
---
2+
name: Bug Report
3+
description: File a bug report
4+
title: "[Bug]: "
5+
labels: ["bug", "Triage"]
6+
assignees: ["manchuck", "dragonmantank"]
7+
body:
8+
- type: dropdown
9+
id: node_version
10+
attributes:
11+
label: PHP Version
12+
description: What version of PHP are you using?
13+
options:
14+
- 8.1
15+
- 8.2
16+
- 8.3
17+
- 8.4
18+
validations:
19+
required: true
20+
- type: dropdown
21+
id: platform
22+
attributes:
23+
label: Platform
24+
description: What is the platform you are having the issue on?
25+
multiple: true
26+
options:
27+
- "Windows"
28+
- "Linux"
29+
- "Mac (intel)"
30+
- "Mac (Apple Silcon)"
31+
- "Docker Container"
32+
validations:
33+
required: true
34+
- type: input
35+
id: sdk_version
36+
attributes:
37+
label: SDK Version
38+
description: What version of the SDK are you using?
39+
placeholder: 4.11.2
40+
validations:
41+
required: true
42+
- type: textarea
43+
id: code_sample
44+
attributes:
45+
label: Code Sample
46+
description: Please provide a sample of the code
47+
validations:
48+
required: true
49+
- type: textarea
50+
id: expected_behavior
51+
attributes:
52+
label: Expected Behavior
53+
description: Please provide a brief description of what you wanted to
54+
happen
55+
validations:
56+
required: true
57+
- type: textarea
58+
id: actual_behavior
59+
attributes:
60+
label: Actual Behavior
61+
description: Please provide a brief description of what happened
62+
validations:
63+
required: true

0 commit comments

Comments
 (0)