返回 DeepSeek-Reasonix
bug_report.yml
根目录 / .github / ISSUE_TEMPLATE / bug_report.yml
1 name: Bug report
2 description: Report a bug in DeepSeek-Reasonix
3 title: "[Bug]: "
4 labels: ["bug"]
5 body:
6 - type: markdown
7 attributes:
8 value: |
9 Thanks for filing a bug. Pick which version line you're on below — it gets
10 labeled (`v1`/`v2`) automatically, no maintainer action needed.
11 - type: dropdown
12 id: version-line
13 attributes:
14 label: Version line
15 description: Which line are you running?
16 options:
17 - "v2 — Go rewrite (1.x), main-v2 (active development)"
18 - "v1 — Legacy TypeScript (0.x), maintenance only"
19 validations:
20 required: true
21 - type: input
22 id: version
23 attributes:
24 label: Exact version
25 description: Output of `reasonix --version`.
26 placeholder: e.g. 1.0.0
27 validations:
28 required: true
29 - type: textarea
30 id: what-happened
31 attributes:
32 label: What happened?
33 description: A clear description of the bug, and what you expected instead.
34 validations:
35 required: true
36 - type: textarea
37 id: repro
38 attributes:
39 label: Steps to reproduce
40 placeholder: |
41 1. ...
42 2. ...
43 3. ...
44 validations:
45 required: true
46 - type: input
47 id: os
48 attributes:
49 label: OS / platform
50 placeholder: e.g. macOS 15.3 (arm64), Ubuntu 24.04, Windows 11
51 validations:
52 required: true
53 - type: textarea
54 id: logs
55 attributes:
56 label: Relevant logs or output
57 description: Paste any error output. Automatically formatted as code.
58 render: shell
59 validations:
60 required: false
61
61 lines YAML