|
| 1 | +name: "Bug Report Template For English" |
| 2 | +description: "Use this template to report a bug when using YY-Thunks" |
| 3 | +title: "Brief title, such as: Crash/deadlock when calling XXXX" |
| 4 | +labels: |
| 5 | + - bug |
| 6 | +body: |
| 7 | + - type: markdown |
| 8 | + attributes: |
| 9 | + value: "Clearly and concisely describe the bug title. Examples: Crash/deadlock when calling XXXX; Cannot find XXXX when linking; Calling XXXX returns unexpected results." |
| 10 | + |
| 11 | + - type: textarea |
| 12 | + id: background_en |
| 13 | + attributes: |
| 14 | + label: "Background Information" |
| 15 | + description: "Provide relevant environment details." |
| 16 | + placeholder: | |
| 17 | + - Screenshot of error: <paste or drag image> |
| 18 | + - Operating System Version: Windows 10 16299 arm64 |
| 19 | + - YY-Thunks Version: v1.1.9 |
| 20 | + - YY-Thunks Configuration: Compatible to 6.0.6000 |
| 21 | + - VC Toolset Version: 14.14.26428 |
| 22 | + - Project Platform: x64 |
| 23 | + validations: |
| 24 | + required: true |
| 25 | + |
| 26 | + - type: textarea |
| 27 | + id: expected_en |
| 28 | + attributes: |
| 29 | + label: "Expected behavior" |
| 30 | + description: "Describe what should happen. Example: Calling XXXX should normally return XXX." |
| 31 | + placeholder: "Calling XXXX should normally return XXX" |
| 32 | + validations: |
| 33 | + required: true |
| 34 | + |
| 35 | + - type: textarea |
| 36 | + id: steps_en |
| 37 | + attributes: |
| 38 | + label: "Steps to reproduce" |
| 39 | + description: "Detail the steps to reproduce or provide minimum reproducible code." |
| 40 | + placeholder: | |
| 41 | + 1. Use XXXX version of YY-Thunks |
| 42 | + 2. Call XXXX function |
| 43 | + 3. Then call YYYY function |
| 44 | + 4. Observe crash/deadlock/unexpected results |
| 45 | + render: bash |
| 46 | + validations: |
| 47 | + required: true |
| 48 | + |
| 49 | + - type: textarea |
| 50 | + id: repro_code_en |
| 51 | + attributes: |
| 52 | + label: "Reproduction code example (C++)" |
| 53 | + description: "Provide a minimal, compilable C++14 example." |
| 54 | + placeholder: | |
| 55 | + ```cpp |
| 56 | + int main() |
| 57 | + { |
| 58 | + // Minimal reproducible code |
| 59 | + return 0; |
| 60 | + } |
| 61 | + ``` |
| 62 | + render: cpp |
| 63 | + |
| 64 | + - type: textarea |
| 65 | + id: investigation_en |
| 66 | + attributes: |
| 67 | + label: "Your Investigation Results" |
| 68 | + description: "Record the work done and clues found." |
| 69 | + placeholder: | |
| 70 | + - I have tried different versions of YY-Thunks; result is the same. |
| 71 | + - Only XXX OS version can reproduce. |
| 72 | + - Only the first call to XXXX gives incorrect results. |
| 73 | +
|
| 74 | + - type: checkboxes |
| 75 | + id: confirmations_en |
| 76 | + attributes: |
| 77 | + label: "Confirm before submitting" |
| 78 | + options: |
| 79 | + - label: "I have searched existing issues for duplicates" |
| 80 | + - label: "I included detailed steps or a minimal repro" |
| 81 | + - label: "I included environment details" |
0 commit comments