1+ name : Bug report
2+ description : Report a bug or issue. See closed issues before reporting to confirm issue has not been reported or resolved.
3+ title : " [Bug]: "
4+ labels : ["bug"]
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 necessary steps to help us reproduce the issue."
25+ placeholder : |
26+ 1. Install the Adyen API'...'
27+ 2. Create '...'
28+ 3. Import and use the NotificationRequest object '...'
29+ 3. Run '...'
30+ 4. Observer error '...'
31+ validations :
32+ required : true
33+
34+ - type : textarea
35+ id : actual-behavior
36+ attributes :
37+ label : " Actual behavior"
38+ description : " Describe what happened - the error or unexpected behaviour you see."
39+ placeholder : " Example: The API returns a 500 internal server error."
40+
41+ - type : textarea
42+ id : expected-behavior
43+ attributes :
44+ label : " Expected behavior"
45+ description : " Describe what you expected to happen."
46+ placeholder : " Example: The Adyen Checkout API should return a 200 status with the correct response payload."
47+ validations :
48+ required : true
49+
50+ - type : textarea
51+ id : code-snippet
52+ attributes :
53+ label : " Code snippet or screenshots (if applicable)"
54+ description : " Provide relevant code snippets or screenshots to illustrate the issue."
55+ placeholder : " ```java\n // Your code here\n ```"
56+
57+ - type : input
58+ id : adyen-api-version
59+ attributes :
60+ label : " Adyen Java API Library version"
61+ description : " Specify the version of the Adyen API library you're using."
62+ placeholder : " Example: 20.1.2"
63+ validations :
64+ required : true
65+
66+ - type : input
67+ id : java-version
68+ attributes :
69+ label : " Java version"
70+ description : " Specify the Java version you're using."
71+ placeholder : " Example: 20"
72+ validations :
73+ required : true
74+
75+ - type : dropdown
76+ id : operating-system
77+ attributes :
78+ label : " Operating System"
79+ description : " Select your operating system."
80+ options :
81+ - Windows
82+ - macOS
83+ - Linux
84+ - Other
85+ validations :
86+ required : true
87+
88+ - type : textarea
89+ id : additional-context
90+ attributes :
91+ label : " Additional context"
92+ description : " Provide any other relevant details."
93+ placeholder : " Example: This issue started after updating to version X."
0 commit comments