mirror of
https://github.com/TheAlgorithms/C
synced 2024-11-22 05:21:49 +03:00
b4f2f87a78
...forms. Also disables blank issues and adds an `Other` template for generic issues without blank issues.
66 lines
1.7 KiB
YAML
66 lines
1.7 KiB
YAML
name: Bug report
|
|
description: Create a report to help us improve. Report bugs found while using the project
|
|
title: "[BUG]"
|
|
labels: [bug]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: "Provide a general summary of the issue in the Title above"
|
|
- type: textarea
|
|
id: description
|
|
attributes:
|
|
label: Description
|
|
description: Provide a general summary of the issue in the Title above
|
|
validations:
|
|
required: true
|
|
- type: input
|
|
id: expectedbhv
|
|
attributes:
|
|
label: Expected behavior
|
|
description: Tell us what should happen
|
|
validations:
|
|
required: true
|
|
- type: input
|
|
id: actualbhv
|
|
attributes:
|
|
label: Actual behavior
|
|
description: Tell us what happens instead
|
|
validations:
|
|
required: true
|
|
- type: input
|
|
id: possiblefix
|
|
attributes:
|
|
label: Possible fix
|
|
description: Not obligatory, but suggest a fix or reason for the bug
|
|
validations:
|
|
required: false
|
|
- type: textarea
|
|
id: steps
|
|
attributes:
|
|
label: Steps to reproduce
|
|
description: |
|
|
Provide a link to a live example, or an unambiguous set of steps to
|
|
reproduce this bug. Include code to reproduce, if relevant
|
|
placeholder: |
|
|
1.
|
|
2.
|
|
3.
|
|
4.
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: context
|
|
attributes:
|
|
label: Context
|
|
description: How has this bug affected you? What were you trying to accomplish?
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: extrainformation
|
|
attributes:
|
|
label: Additional information
|
|
description: Is there anything else we should know about this bug?
|
|
validations:
|
|
required: false
|
|
|