bug_report.yml
1 name: 'Bug report' 2 description: Report a bug in this project. 3 labels: ['bug'] 4 body: 5 - type: markdown 6 attributes: 7 value: | 8 Before creating an issue, please read the following: 9 10 - Read the `README.md` file on the project page or the documentation file and compare your code to the intent of the project. 11 - Search to see if the same issue already exists, and keep the title concise and accurate so that it's easy for others to understand and search for. 12 - Please create a separate issue for each type of issue. 13 - For modular projects, make sure you're using the latest version of the module. 14 - Please be as detailed as possible and write in English so that we can handle your issue quickly. 15 - type: textarea 16 attributes: 17 label: Describe the bug 18 description: | 19 For the issue you are experiencing, please describe in detail what you are seeing, the error message, and the impact of the issue. If you are able to reproduce the issue, please list the steps in order. You can attach an image or video if necessary. 20 validations: 21 required: true 22 - type: textarea 23 attributes: 24 label: Expected behavior 25 description: Describe how it should be handled when it's normal behavior or what needs to be fixed. 26 validations: 27 - type: input 28 attributes: 29 label: Your environment - System OS 30 description: Please describe the full range of OSes you are experiencing the issue with, preferably including the version. 31 placeholder: Windows 11, macOS 15.x, Linux Ubuntu 24.04... 32 validations: 33 - type: input 34 attributes: 35 label: Your environment - Node.js 36 description: If relevant, please describe the version of Node.js you are currently using. 37 placeholder: 20.19.4, 22.17.0, 24.4.0... 38 validations: 39 - type: input 40 attributes: 41 label: Your environment - Python 42 description: If relevant, please describe the version of Python you are currently using. 43 placeholder: 3.10, 3.11, 3.12... 44 validations: