Skip to content

Commit ec0cde8

Browse files
committed
Add bug report form
1 parent 29a7290 commit ec0cde8

File tree

1 file changed

+101
-0
lines changed

1 file changed

+101
-0
lines changed
Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
name: Bug Report
2+
description: Report a bug or issue
3+
title: "[Bug]: "
4+
labels: ["bug", "triage"]
5+
assignees: []
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: "#### Thank you for reporting this issue. Please provide all the required information to help us understand and resolve the issue."
10+
11+
- type: input
12+
id: bug-description
13+
attributes:
14+
label: "Description"
15+
description: "Provide a summary of the issue."
16+
placeholder: "Example: Adyen Checkout API returns an unexpected error when..."
17+
validations:
18+
required: true
19+
20+
- type: textarea
21+
id: reproduce-steps
22+
attributes:
23+
label: "Steps to reproduce"
24+
description: "List all necessary steps to reproduce the issue."
25+
placeholder: |
26+
1. Install the Adyen API'...'
27+
2. Create '...'
28+
3. Run '...'
29+
4. Observer error '...'
30+
validations:
31+
required: true
32+
33+
- type: textarea
34+
id: expected-behavior
35+
attributes:
36+
label: "Expected behavior"
37+
description: "Describe what you expected to happen."
38+
placeholder: "Example: The Adyen Checkout API should return a 200 status with the correct response payload."
39+
validations:
40+
required: true
41+
42+
- type: textarea
43+
id: actual-behavior
44+
attributes:
45+
label: "Actual behavior"
46+
description: "Describe what actually happened."
47+
placeholder: "Example: The API returns a 500 internal server error."
48+
49+
- type: textarea
50+
id: code-snippet
51+
attributes:
52+
label: "Code snippet or screenshots (if applicable)"
53+
description: "Provide relevant code snippets or screenshots to illustrate the issue."
54+
placeholder: "```js\n// Your code here\n```"
55+
56+
- type: input
57+
id: adyen-api-version
58+
attributes:
59+
label: "Adyen API Library version"
60+
description: "Specify the version of the Adyen API library you're using."
61+
placeholder: "Example: 20.1.2"
62+
validations:
63+
required: true
64+
65+
- type: dropdown
66+
id: operating-system
67+
attributes:
68+
label: "Operating System"
69+
description: "Select your operating system."
70+
options:
71+
- Windows
72+
- macOS
73+
- Linux
74+
- Other
75+
validations:
76+
required: true
77+
78+
- type: input
79+
id: node-version
80+
attributes:
81+
label: "Node.js version"
82+
description: "Specify the Node.js version you're using."
83+
placeholder: "Example: 16.14.0"
84+
validations:
85+
required: true
86+
87+
- type: input
88+
id: npm-version
89+
attributes:
90+
label: "NPM version"
91+
description: "Specify the NPM version you're using."
92+
placeholder: "Example: 8.5.0"
93+
validations:
94+
required: true
95+
96+
- type: textarea
97+
id: additional-context
98+
attributes:
99+
label: "Additional context"
100+
description: "Provide any other relevant details."
101+
placeholder: "Example: This issue started after updating to version X."

0 commit comments

Comments
 (0)