CORE/.gitea/issue_template/helprequest.yml

84 lines
3.2 KiB
YAML

name: '💬 Help'
about: 'Request help.'
title: 'help: '
labels:
- 'Help/Wanted'
body:
- type: 'markdown'
id: 'text-introduction'
attributes:
value: |
Hey there! Seems like you have some kind of issue with the CORE Framework. \
Please answer the following questions accurately, otherwise we won't be able to help you. \
\
**Note: Please check if someone has had the same issue before. If not, continue. If so, participate in that one instead.** \
**Note: Please don't censor anything *except* sensitive information. You don't need to be embarrased about your username. You censor your stuff, we censor our answers.**
- type: 'textarea'
id: 'help-description'
attributes:
label: 'Problem description'
description: 'Explain what your problem is as detailed as possible.'
placeholder: 'How can I reposition scenes inside a scene collection?'
validations:
required: true
- type: 'textarea'
id: 'help-log'
attributes:
label: 'Log'
description: 'For us to understand the problem you''re having please insert the ENTIRE log file here. You must give us `DIAG` level logs (set `logger_level` in CORE''s configuration to `CoreTypes.LoggerLevel.DIAG` during initialization). **Leave this empty if your problem does not need log output or doesn''t involve code at all.**'
placeholder: 'Your log file here...'
value: |
```plain
Your log file here...
```
validations:
required: false
- type: 'textarea'
id: 'help-snippet'
attributes:
label: 'Code snippet'
description: 'Insert a snippet of your code that you need help with. **Leave this empty if your problem does not need log output or doesn''t involve code at all.**'
value: |
```gdscript
Your code snippet here...
```
validations:
required: false
- type: 'dropdown'
id: 'framework-branch'
attributes:
label: 'Branch'
description: 'What branch are you using?'
options:
- stable
- develop
validations:
required: true
- type: 'input'
id: 'framework-version-or-commit'
attributes:
label: 'Version/Commit'
description: 'Name the version (for the stable branch) or the commit (for the develop branch) here.'
placeholder: 'ex. v505-r69 OR ed4647c750f67cb6108c845ed6291dae9627cf56'
validations:
required: true
- type: 'input'
id: 'godot-version'
attributes:
label: 'Godot Version'
description: 'Name the engine version you are using. You can copy it by starting the editor''s project manager and clicking on the version text in the top right corner.'
placeholder: 'ex. v4.2.1.stable.flathub [b09f793f5]'
validations:
required: true
- type: 'input'
id: 'godot-custom'
attributes:
label: 'Modified engine vendor'
description: 'Name the custom engine name and/or link if the engine you are using isn''t directly built from Godot''s source code (i.e. a fork). **Leave empty if you''re not using a fork of the Godot Engine.**'
placeholder: 'e.g. godot-vita (https://github.com/SonicMastr/godot-vita)'
validations:
required: false
- type: 'markdown'
id: 'text-tysm'
attributes:
value: 'Thank you for filling out this help form. Please check your answers before sending your help request.'