This is an automated email from the ASF dual-hosted git repository. yiconghuang pushed a commit to branch chore/bug-template in repository https://gitbox.apache.org/repos/asf/texera.git
commit bfa9dfb59cd5323aa4d7cc6f7ab378e15a1e422c Author: Yicong Huang <[email protected]> AuthorDate: Fri Oct 3 01:00:32 2025 -0400 Add bug report template Signed-off-by: Yicong Huang <[email protected]> --- .github/ISSUE_TEMPLATE/bug-template.yaml | 58 ++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/bug-template.yaml b/.github/ISSUE_TEMPLATE/bug-template.yaml new file mode 100644 index 0000000000..4ee039b442 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-template.yaml @@ -0,0 +1,58 @@ +name: Bug Report +description: File a bug report. +labels: ["bug", "triage"] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + - type: textarea + id: what-happened + attributes: + label: What happened? + description: Also tell us, what did you expect to happen? + placeholder: Tell us what you see! + value: "A bug happened!" + validations: + required: true + - type: textarea + id: reproduce + attributes: + label: How to reproduce? + description: Please include steps for a repro. + validations: + required: true + - type: dropdown + id: version + attributes: + label: Version + description: What version of Texera are you running? + options: + - 1.0.0 (Default) + default: 0 + validations: + required: true + - type: dropdown + id: browsers + attributes: + label: What browsers are you seeing the problem on? + multiple: true + options: + - Chrome + - Safari + - Firefox + - Microsoft Edge + - type: textarea + id: logs + attributes: + label: Relevant log output + description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. + render: shell + - type: checkboxes + id: terms + attributes: + label: Code of Conduct + description: By submitting this issue, you agree to follow [Apache Code of Conduct](https://www.apache.org/foundation/policies/conduct). + options: + - label: I agree to follow Apache Code of Conduct + required: true
