openai/openai-dotnet
Publicmirrored from https://github.com/openai/openai-dotnetAvailable
.github/ISSUE_TEMPLATE/02_bug_report.yaml
55lines · modecode
| 1 | name: Bug report |
| 2 | description: Report an issue or bug with this library |
| 3 | title: "[BUG]" |
| 4 | labels: ['needs-triage'] |
| 5 | body: |
| 6 | - type: markdown |
| 7 | attributes: |
| 8 | value: | |
| 9 | Thanks for taking the time to fill out this bug report! |
| 10 | - type: textarea |
| 11 | id: what-happened |
| 12 | attributes: |
| 13 | label: Describe the bug |
| 14 | description: A clear and concise description of what the bug is, and any additional context. |
| 15 | placeholder: Tell us what you see. |
| 16 | validations: |
| 17 | required: true |
| 18 | - type: textarea |
| 19 | id: repro-steps |
| 20 | attributes: |
| 21 | label: Steps to reproduce |
| 22 | description: Steps to reproduce the behavior. |
| 23 | placeholder: | |
| 24 | 1. Fetch a '...' |
| 25 | 2. Update the '....' |
| 26 | 3. See error |
| 27 | validations: |
| 28 | required: true |
| 29 | - type: textarea |
| 30 | id: code-snippets |
| 31 | attributes: |
| 32 | label: Code snippets |
| 33 | description: If applicable, add code snippets to help explain your problem. |
| 34 | render: C# |
| 35 | validations: |
| 36 | required: false |
| 37 | - type: input |
| 38 | id: os |
| 39 | attributes: |
| 40 | label: OS |
| 41 | placeholder: Windows, macOS, Linux, etc. |
| 42 | validations: |
| 43 | required: true |
| 44 | - type: input |
| 45 | id: language-version |
| 46 | attributes: |
| 47 | label: .NET version |
| 48 | validations: |
| 49 | required: true |
| 50 | - type: input |
| 51 | id: lib-version |
| 52 | attributes: |
| 53 | label: Library version |
| 54 | validations: |
| 55 | required: true |
| 56 | |