Skip to content

Commit e324e29

Browse files
committed
issue template bug report
1 parent 720f05e commit e324e29

File tree

1 file changed

+88
-0
lines changed

1 file changed

+88
-0
lines changed

Diff for: .github/ISSUE_TEMPLATE/00_bug_report.yml

+88
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
name: "Report a Bug"
2+
description: "Report a bug about unexpected error, a crash, or otherwise incorrect behavior while using the library."
3+
title: "[Bug]: "
4+
labels: ["kind/bug"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Please provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner.
10+
11+
- type: textarea
12+
id: actual
13+
attributes:
14+
label: Actual Behavior
15+
description: What happened?
16+
validations:
17+
required: true
18+
19+
- type: textarea
20+
id: expected
21+
attributes:
22+
label: Expected Behavior
23+
description: What did you expect to happen?
24+
validations:
25+
required: true
26+
27+
- type: textarea
28+
id: reproduce
29+
attributes:
30+
label: Steps to Reproduce
31+
description: Please list the steps required to reproduce the issue. As minimally and precisely as possible.
32+
validations:
33+
required: true
34+
35+
- type: input
36+
id: openapi_core_version
37+
attributes:
38+
label: OpenAPI Core Version
39+
description: The semantic version of OpenAPI Core used when experiencing the bug. If multiple versions have been tested, a comma separated list.
40+
placeholder: "X.Y.Z"
41+
validations:
42+
required: true
43+
44+
- type: input
45+
id: openapi_core_integration
46+
attributes:
47+
label: OpenAPI Core Integration
48+
description: What integration did you use.
49+
placeholder: "django, flask, etc."
50+
validations:
51+
required: true
52+
53+
- type: textarea
54+
id: affected
55+
attributes:
56+
label: Affected Area(s)
57+
description: Please list the affected area(s).
58+
placeholder: "casting, dependencies, deserializing, documentation, schema, security, unmarshalling, validation"
59+
validations:
60+
required: false
61+
62+
- type: textarea
63+
id: references
64+
attributes:
65+
label: References
66+
description: |
67+
Where possible, please supply links to documentations, other GitHub issues (open or closed) or pull requests that give additional context.
68+
validations:
69+
required: false
70+
71+
- type: textarea
72+
id: other
73+
attributes:
74+
label: Anything else we need to know?
75+
validations:
76+
required: false
77+
78+
- type: dropdown
79+
id: will_contribute
80+
attributes:
81+
label: Would you like to implement a fix?
82+
description: |
83+
If you plan to implement a fix for this.
84+
options:
85+
- "No"
86+
- "Yes"
87+
validations:
88+
required: false

0 commit comments

Comments
 (0)