|
1
|
name: Bug Report |
|
2
|
description: Report a bug in Hugoifier |
|
3
|
title: "[Bug]: " |
|
4
|
labels: ["bug", "triage"] |
|
5
|
body: |
|
6
|
- type: markdown |
|
7
|
attributes: |
|
8
|
value: | |
|
9
|
Thank you for reporting a bug. Please fill out the fields below so we can diagnose and fix the issue quickly. |
|
10
|
|
|
11
|
- type: textarea |
|
12
|
id: description |
|
13
|
attributes: |
|
14
|
label: Description |
|
15
|
description: A clear and concise description of the bug. |
|
16
|
placeholder: Describe the bug... |
|
17
|
validations: |
|
18
|
required: true |
|
19
|
|
|
20
|
- type: textarea |
|
21
|
id: steps-to-reproduce |
|
22
|
attributes: |
|
23
|
label: Steps to Reproduce |
|
24
|
description: The exact steps to reproduce the behavior. |
|
25
|
placeholder: | |
|
26
|
1. Run `python src/cli.py complete themes/my-theme` |
|
27
|
2. Observe error during decapify step |
|
28
|
validations: |
|
29
|
required: true |
|
30
|
|
|
31
|
- type: textarea |
|
32
|
id: expected-behavior |
|
33
|
attributes: |
|
34
|
label: Expected Behavior |
|
35
|
placeholder: Describe what you expected... |
|
36
|
validations: |
|
37
|
required: true |
|
38
|
|
|
39
|
- type: textarea |
|
40
|
id: actual-behavior |
|
41
|
attributes: |
|
42
|
label: Actual Behavior |
|
43
|
placeholder: Describe what actually happened... |
|
44
|
validations: |
|
45
|
required: true |
|
46
|
|
|
47
|
- type: dropdown |
|
48
|
id: os |
|
49
|
attributes: |
|
50
|
label: Operating System |
|
51
|
options: |
|
52
|
- macOS |
|
53
|
- Linux (Ubuntu/Debian) |
|
54
|
- Linux (Fedora/RHEL) |
|
55
|
- Linux (other) |
|
56
|
- Windows |
|
57
|
- Other |
|
58
|
validations: |
|
59
|
required: true |
|
60
|
|
|
61
|
- type: dropdown |
|
62
|
id: python-version |
|
63
|
attributes: |
|
64
|
label: Python Version |
|
65
|
options: |
|
66
|
- "3.13" |
|
67
|
- "3.12" |
|
68
|
- "3.11" |
|
69
|
validations: |
|
70
|
required: true |
|
71
|
|
|
72
|
- type: dropdown |
|
73
|
id: backend |
|
74
|
attributes: |
|
75
|
label: AI Backend |
|
76
|
description: Which backend were you using? |
|
77
|
options: |
|
78
|
- Anthropic (default) |
|
79
|
- OpenAI |
|
80
|
- Google |
|
81
|
- Not applicable |
|
82
|
validations: |
|
83
|
required: true |
|
84
|
|
|
85
|
- type: textarea |
|
86
|
id: logs |
|
87
|
attributes: |
|
88
|
label: Logs |
|
89
|
description: Paste any relevant log output. |
|
90
|
render: shell |
|
91
|
validations: |
|
92
|
required: false |
|
93
|
|