github.com/gogf/gf/v2@v2.7.4/.github/ISSUE_TEMPLATE/00-bug.yml (about)

     1  # https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository#creating-issue-forms
     2  # https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema
     3  name: Bugs
     4  description: GoFrame command, module, or anything else
     5  title: "os/gtime: issue title"
     6  labels:
     7    - bug
     8  
     9  body:
    10    - type: markdown
    11      attributes:
    12        value: |
    13          Thanks for helping us improve! 🙏 Please answer these questions and provide as much information as possible about your problem.
    14          
    15          The issue title uses the format of the package name goes before the colon. Thanks!
    16          
    17          标题使用包名在冒号前的格式!谢谢! 
    18  
    19    - type: input
    20      id: go-version
    21      attributes:
    22        label: Go version
    23        description: |
    24          What version of Go are you using (`go version`)?
    25        placeholder: ex. go version go1.20.7 darwin/arm64
    26      validations:
    27        required: true
    28  
    29    - type: input
    30      id: gf-version
    31      attributes:
    32        label: GoFrame version
    33        description: |
    34          What version of GoFrame are you using (`gf version`)?
    35        placeholder: ex. 2.7.0
    36      validations:
    37        required: true
    38  
    39    - type: dropdown
    40      id: is-reproducible
    41      attributes:
    42        label: Can this bug be reproduced with the latest release?
    43        options:
    44          - Option Yes
    45          - Option No
    46      validations:
    47        required: true
    48  
    49    - type: textarea
    50      id: what-did-you-do
    51      attributes:
    52        label: "What did you do?"
    53        description: "If possible, provide a recipe for reproducing the error. A complete runnable program is good. A link on [go.dev/play](https://go.dev/play) is best."
    54      validations:
    55        required: true
    56  
    57    - type: textarea
    58      id: actual-behavior
    59      attributes:
    60        label: "What did you see happen?"
    61        description: Command invocations and their associated output, functions with their arguments and return results, full stacktraces for panics (upload a file if it is very long), etc. Prefer copying text output over using screenshots.
    62      validations:
    63        required: true
    64  
    65    - type: textarea
    66      id: expected-behavior
    67      attributes:
    68        label: "What did you expect to see?"
    69        description: Why is the current output incorrect, and any additional context we may need to understand the issue.
    70      validations:
    71        required: true