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