github.com/Mrs4s/go-cqhttp@v1.2.0/.github/ISSUE_TEMPLATE/bug-report.yaml (about)

     1  name: 回报错误
     2  description: 在使用 go-cqhttp 的过程中遇到了错误
     3  title: '[Bug]: '
     4  labels: [ "bug?" ]
     5  
     6  body:
     7    # User's README and agreement
     8    - type: markdown
     9      attributes:
    10        value: |
    11          ## 感谢您愿意填写错误回报!
    12          ## 以下是一些注意事项,请务必阅读让我们能够更容易处理
    13  
    14          ### ❗ | 确定没有相同问题的ISSUE已被提出. (教程: https://forums.go-cqhttp.org/t/topic/141)
    15          ### 🌎| 请准确填写环境信息
    16          ### ❔ | 打开DEBUG模式复现,并提供出现问题前后至少 10 秒的完整日志内容。请自行删除日志内存在的个人信息及敏感内容。
    17          ### ⚠ | 如果涉及内存泄漏/CPU占用异常请打开DEBUG模式并下载pprof性能分析.
    18  
    19          ## 如果您不知道如何有效、精准地表述,我们建议您先阅读《提问的智慧》
    20          链接: [《提问的智慧》](https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way/blob/main/README-zh_CN.md)
    21          ---
    22    - type: checkboxes
    23      id: terms
    24      attributes:
    25        label: 请确保您已阅读以上注意事项,并勾选下方的确认框。
    26        options:
    27          - label: "我已经仔细阅读上述教程和 [\"提问前需知\"](https://forums.go-cqhttp.org/t/topic/141)"
    28            required: true
    29          - label: "我已经使用 [dev分支版本](https://github.com/Mrs4s/go-cqhttp/actions/workflows/ci.yml) 测试过,问题依旧存在。"
    30            required: true
    31          - label: "我已经在 [Issue Tracker](https://github.com/Mrs4s/go-cqhttp/issues) 中找过我要提出的问题,没有找到相同问题的ISSUE。"
    32            required: true
    33          - label: 我已知晓并同意,此处仅用于汇报程序中存在的问题。若这个 Issue 是关于其他非程序本身问题,则我的 Issue 可能会被无条件自动关闭或/并锁定。(这些问题应当在 Discussion 板块提出。)
    34            required: true
    35  
    36    # User's data
    37    - type: markdown
    38      attributes:
    39        value: |
    40          ## 环境信息
    41          请根据实际使用环境修改以下信息。
    42  
    43    # Env | go-cqhttp Version
    44    - type: input
    45      id: env-gocq-ver
    46      attributes:
    47        label: go-cqhttp 版本
    48      validations:
    49        required: true
    50  
    51    # Env | VM Version
    52    - type: dropdown
    53      id: env-vm-ver
    54      attributes:
    55        label: 运行环境
    56        description: 选择运行 go-cqhttp 的系统版本
    57        options:
    58          - Windows (64)
    59          - Windows (32/x84)
    60          - MacOS
    61          - Linux
    62          - Ubuntu
    63          - CentOS
    64          - ArchLinux
    65          - UNIX (Android)
    66          - 其它(请在下方说明)
    67      validations:
    68        required: true
    69  
    70    # Env | VM Arch
    71    - type: dropdown
    72      id: env-vm-arch
    73      attributes:
    74        label: 运行架构
    75        description: (可选) 选择运行 go-cqhttp 的系统架构
    76        options:
    77          - AMD64
    78          - x86
    79          - ARM [32] (别名:AArch32 / ARMv7)
    80          - ARM [64] (别名:AArch64 / ARMv8)
    81          - 其它
    82  
    83    # Env | Connection type
    84    - type: dropdown
    85      id: env-conn-type
    86      attributes:
    87        label: 连接方式
    88        description: 选择对接机器人的连接方式
    89        options:
    90          - HTTP
    91          - WebSocket (正向)
    92          - WebSocket (反向)
    93          - LambdaServer
    94      validations:
    95        required: true
    96  
    97    # Env | Protocol
    98    - type: dropdown
    99      id: env-protocol
   100      attributes:
   101        label: 使用协议
   102        description: 选择使用的协议
   103        options:
   104          - 0 | Default
   105          - 1 | Android Phone
   106          - 2 | Android Watch
   107          - 3 | MacOS
   108          - 4 | 企点
   109          - 5 | iPad
   110          - 6 | aPad
   111      validations:
   112        required: true
   113  
   114    # Input | Reproduce
   115    - type: textarea
   116      id: reproduce-steps
   117      attributes:
   118        label: 重现步骤
   119        description: |
   120          我们需要执行哪些操作才能让 bug 出现?
   121          简洁清晰的重现步骤能够帮助我们更迅速地定位问题所在。
   122      validations:
   123        required: true
   124  
   125    # Input | Expected result
   126    - type: textarea
   127      id: expected
   128      attributes:
   129        label: 期望的结果是什么?
   130      validations:
   131        required: true
   132  
   133    # Input | Actual result
   134    - type: textarea
   135      id: actual
   136      attributes:
   137        label: 实际的结果是什么?
   138      validations:
   139        required: true
   140  
   141    # Optional | Reproduce code
   142    - type: textarea
   143      id: reproduce-code
   144      attributes:
   145        label: 简单的复现代码/链接(可选)
   146        render: golang
   147  
   148    # Optional | Logging
   149    - type: textarea
   150      id: logging
   151      attributes:
   152        label: 日志记录(可选)
   153        render: golang
   154  
   155    # Optional | Extra description
   156    - type: textarea
   157      id: extra-desc
   158      attributes:
   159        label: 补充说明(可选)