github.com/sagernet/sing-box@v1.2.7/.github/ISSUE_TEMPLATE/bug_report.yml (about) 1 name: Bug Report 2 description: "Create a report to help us improve." 3 body: 4 - type: checkboxes 5 id: terms 6 attributes: 7 label: Welcome 8 options: 9 - label: Yes, I'm using the latest major release. Only such installations are supported. 10 required: true 11 - label: Yes, I'm using the latest Golang release. Only such installations are supported. 12 required: true 13 - label: Yes, I've searched similar issues on GitHub and didn't find any. 14 required: true 15 - label: Yes, I've included all information below (version, **FULL** config, **FULL** log, etc). 16 required: true 17 18 - type: textarea 19 id: problem 20 attributes: 21 label: Description of the problem 22 placeholder: Your problem description 23 validations: 24 required: true 25 26 - type: textarea 27 id: version 28 attributes: 29 label: Version of sing-box 30 value: |- 31 <details> 32 33 ```console 34 $ sing-box version 35 # Paste output here 36 ``` 37 38 </details> 39 validations: 40 required: true 41 42 - type: textarea 43 id: config 44 attributes: 45 label: Server and client configuration file 46 value: |- 47 <details> 48 49 ```console 50 # paste json here 51 ``` 52 53 </details> 54 validations: 55 required: true 56 57 - type: textarea 58 id: log 59 attributes: 60 label: Server and client log file 61 value: |- 62 <details> 63 64 ```console 65 # paste log here 66 ``` 67 68 </details> 69 validations: 70 required: true