github.com/timandy/routine@v1.1.4-0.20240507073150-e4a3e1fe2ba5/.github/ISSUE_TEMPLATE/bug.yml (about)

     1  name: Bugs
     2  description: Create a report to help us improve
     3  title: "[Bug] <title>"
     4  labels: [ "bug" ]
     5  body:
     6    - type: markdown
     7      attributes:
     8        value: Thanks for taking the time to fill out this bug report!
     9  
    10    - type: checkboxes
    11      attributes:
    12        label: Is there an existing issue for this?
    13        description: Please search to see if an issue already exists for the bug you encountered.
    14        options:
    15          - label: I have searched the existing issues
    16            required: true
    17  
    18    - type: checkboxes
    19      attributes:
    20        label: Does this issue reproduce with the latest release?
    21        description: Please upgrade to the latest version to see if the issue still exists.
    22        options:
    23          - label: I have upgrade to the latest version
    24            required: true
    25  
    26    - type: textarea
    27      attributes:
    28        label: Steps To Reproduce
    29        description: The smallest possible code example to show the problem that can be compiled.
    30        placeholder: |
    31          ```go
    32          package main
    33  
    34          import (
    35              "fmt"
    36          )
    37  
    38          func main() {
    39              fmt.Println("Hello World")
    40          }
    41          ```
    42      validations:
    43        required: true
    44  
    45    - type: textarea
    46      attributes:
    47        label: Expected Behavior
    48        description: A concise description of what you expected to happen.
    49        placeholder: |
    50          The console prints `Hello World`
    51      validations:
    52        required: true
    53  
    54    - type: textarea
    55      attributes:
    56        label: Current Behavior
    57        description: A concise description of what you're experiencing.
    58        placeholder: |
    59          The console prints nothing
    60      validations:
    61        required: true
    62  
    63    - type: textarea
    64      attributes:
    65        label: Environment
    66        description: What version of Go are you using (`go version`)?
    67        placeholder: |
    68          `go version go1.18.3 windows/amd64`
    69      validations:
    70        required: true
    71  
    72    - type: checkboxes
    73      id: terms
    74      attributes:
    75        label: Code of Conduct
    76        description: By submitting this issue, you agree to follow our [Code of Conduct](../blob/main/CODE_OF_CONDUCT.md)
    77        options:
    78          - label: I agree to follow this project's Code of Conduct
    79            required: true