tools/corrosion/.github/ISSUE_TEMPLATE/bug_report.yml
branchtransitional_engine
changeset 16021 6a3dc15b78b9
equal deleted inserted replaced
16009:7544a7d7c819 16021:6a3dc15b78b9
       
     1 name: Bug Report
       
     2 description: File a bug report
       
     3 title: "[Bug]: "
       
     4 labels: ["bug", "triage"]
       
     5 assignees:
       
     6   - jschwe
       
     7 body:
       
     8   - type: markdown
       
     9     attributes:
       
    10       value: |
       
    11         Thanks for taking the time to fill out this bug report!
       
    12   - type: textarea
       
    13     attributes:
       
    14       label: Current Behavior
       
    15       description: A concise description of what you're experiencing.
       
    16     validations:
       
    17       required: false
       
    18   - type: textarea
       
    19     attributes:
       
    20       label: Expected Behavior
       
    21       description: A concise description of what you expected to happen.
       
    22     validations:
       
    23       required: false
       
    24   - type: textarea
       
    25     attributes:
       
    26       label: Steps To Reproduce
       
    27       description: Steps to reproduce the behavior.
       
    28       placeholder: |
       
    29         1. In this environment...
       
    30         2. With this config...
       
    31         3. Run '...'
       
    32         4. See error...
       
    33     validations:
       
    34       required: false
       
    35   - type: textarea
       
    36     attributes:
       
    37       label: Environment
       
    38       description: |
       
    39         examples:
       
    40           - **OS**: Ubuntu 22.04
       
    41           - **CMake**: 3.22.0
       
    42           - **CMake Generator**: Ninja 1.11
       
    43       value: |
       
    44         - OS:
       
    45         - CMake:
       
    46         - CMake Generator:
       
    47       render: markdown
       
    48     validations:
       
    49       required: false
       
    50   - type: textarea
       
    51     attributes:
       
    52       label: CMake configure log with Debug log-level
       
    53       description: |
       
    54         Output when configuring with `cmake -S<source_dir> -B<build_dir> --log-level=DEBUG <your_other_options>`:
       
    55         <details><summary>CMake configure log</summary>
       
    56         <p>
       
    57         
       
    58         ```
       
    59         <log>
       
    60         ```
       
    61         
       
    62         </p>
       
    63         </details>
       
    64     validations:
       
    65       required: false
       
    66   - type: textarea
       
    67     attributes:
       
    68       label: CMake Build step log
       
    69       description: |
       
    70         Output when building with `cmake --build <build_dir> --verbose`:
       
    71         <details><summary>CMake build log</summary>
       
    72         <p>
       
    73 
       
    74         ```
       
    75         <log>
       
    76         ```
       
    77 
       
    78         </p>
       
    79         </details>
       
    80     validations:
       
    81       required: false