mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-28 11:41:04 +00:00
Some checks failed
Qwen Code CI / Lint (GitHub Actions) (push) Has been cancelled
Qwen Code CI / Lint (Javascript) (push) Has been cancelled
E2E Tests / E2E Test (Linux) - sandbox:docker-1 (push) Has been cancelled
E2E Tests / E2E Test (Linux) - sandbox:docker (push) Has been cancelled
E2E Tests / E2E Test (Linux) - sandbox:none (push) Has been cancelled
Qwen Code CI / Lint (Shell) (push) Has been cancelled
Qwen Code CI / Lint (YAML) (push) Has been cancelled
Qwen Code CI / CodeQL (push) Has been cancelled
E2E Tests / E2E Test (Linux) - sandbox:none-1 (push) Has been cancelled
E2E Tests / E2E Test (Linux) - sandbox:docker-2 (push) Has been cancelled
E2E Tests / E2E Test (Linux) - sandbox:none-2 (push) Has been cancelled
E2E Tests / E2E Test - macOS (push) Has been cancelled
Qwen Code CI / Lint (push) Has been cancelled
Qwen Code CI / Test (push) Has been cancelled
Qwen Code CI / Test-1 (push) Has been cancelled
Qwen Code CI / Test-2 (push) Has been cancelled
Qwen Code CI / Test-3 (push) Has been cancelled
Qwen Code CI / Test-4 (push) Has been cancelled
Qwen Code CI / Test-5 (push) Has been cancelled
Qwen Code CI / Test-6 (push) Has been cancelled
Qwen Code CI / Test-7 (push) Has been cancelled
Qwen Code CI / Test-8 (push) Has been cancelled
Qwen Code CI / Post Coverage Comment (push) Has been cancelled
* chore: re-organize labels for better triage results * fix: lint issue * fix: rename gemini to qwen, remove google auth hint * fix: remove scripts
58 lines
1.6 KiB
YAML
58 lines
1.6 KiB
YAML
name: 'Bug Report'
|
|
description: 'Report a bug to help us improve Qwen Code'
|
|
labels: ['type/bug', 'status/needs-triage']
|
|
body:
|
|
- type: 'markdown'
|
|
attributes:
|
|
value: |-
|
|
> [!IMPORTANT]
|
|
> Thanks for taking the time to fill out this bug report!
|
|
>
|
|
> Please search **[existing issues](https://github.com/QwenLM/qwen-code/issues)** to see if an issue already exists for the bug you encountered.
|
|
|
|
- type: 'textarea'
|
|
id: 'problem'
|
|
attributes:
|
|
label: 'What happened?'
|
|
description: 'A clear and concise description of what the bug is.'
|
|
validations:
|
|
required: true
|
|
|
|
- type: 'textarea'
|
|
id: 'expected'
|
|
attributes:
|
|
label: 'What did you expect to happen?'
|
|
validations:
|
|
required: true
|
|
|
|
- type: 'textarea'
|
|
id: 'info'
|
|
attributes:
|
|
label: 'Client information'
|
|
description: 'Please paste the full text from the `/about` command run from Qwen Code. Also include which platform (macOS, Windows, Linux).'
|
|
value: |
|
|
<details>
|
|
<summary>Client Information</summary>
|
|
|
|
Run `qwen` to enter the interactive CLI, then run the `/about` command.
|
|
|
|
```console
|
|
$ qwen /about
|
|
# paste output here
|
|
```
|
|
|
|
</details>
|
|
validations:
|
|
required: true
|
|
|
|
- type: 'textarea'
|
|
id: 'login-info'
|
|
attributes:
|
|
label: 'Login information'
|
|
description: 'Describe how you are logging in (e.g., API Config).'
|
|
|
|
- type: 'textarea'
|
|
id: 'additional-context'
|
|
attributes:
|
|
label: 'Anything else we need to know?'
|
|
description: 'Add any other context about the problem here.'
|