github.com/goplus/gop@v1.2.6/.github/ISSUE_TEMPLATE/bug-report.yml (about)

     1  name: Bug Report
     2  description: Create a report to help us improve
     3  
     4  body:
     5    - type: markdown
     6      attributes:
     7        value: |
     8          ⚠️ Make sure to browse the opened and closed issues before submit your issue.
     9  
    10    - type: textarea
    11      id: sample
    12      attributes:
    13        label: "The following program `sample.gop` triggers an unexpected result"
    14        value: |
    15          // add a sample
    16        render: coffee
    17      validations:
    18        required: true
    19  
    20    - type: textarea
    21      id: expected
    22      attributes:
    23        label: Expected result
    24        render: console
    25      validations:
    26        required: true
    27  
    28    - type: textarea
    29      id: got
    30      attributes:
    31        label: Got
    32        description: |-
    33          ```console
    34          $ gop run ./sample.gop
    35          // output
    36          ```
    37        placeholder: $ gop run ./sample.gop
    38        render: console
    39      validations:
    40        required: true
    41  
    42    - type: input
    43      id: version
    44      attributes:
    45        label: Gop Version
    46        description: Can be a tag or a hash.
    47      validations:
    48        required: true
    49  
    50    - type: textarea
    51      id: additional
    52      attributes:
    53        label: Additional Notes
    54        description: Use [Markdown syntax](https://help.github.com/articles/github-flavored-markdown) if needed.
    55      validations:
    56        required: false