Skip to content

Commit eece152

Browse files
authored
Merge branch 'main' into feat/convert-to-zensical
2 parents e9e2ef2 + c3d04b7 commit eece152

4 files changed

Lines changed: 118 additions & 0 deletions

File tree

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
name: Bug report
2+
description: Something is broken or behaving unexpectedly.
3+
title: "fix: <short description>"
4+
labels: ["bug"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for filing a bug. Please include enough info to reproduce it.
10+
11+
- type: textarea
12+
id: summary
13+
attributes:
14+
label: Summary
15+
description: What happened? What did you expect to happen?
16+
placeholder: |
17+
When I run `make docs` the build fails with ...
18+
I expected the site to build successfully.
19+
validations:
20+
required: true
21+
22+
- type: textarea
23+
id: repro
24+
attributes:
25+
label: Steps to reproduce
26+
description: Minimal commands or actions that trigger the bug.
27+
placeholder: |
28+
1. Clone the repo
29+
2. Run `uv sync`
30+
3. Run `make docs`
31+
render: bash
32+
validations:
33+
required: true
34+
35+
- type: textarea
36+
id: logs
37+
attributes:
38+
label: Logs / output
39+
description: Paste any relevant error output. Sensitive values should be redacted.
40+
render: text
41+
42+
- type: input
43+
id: version
44+
attributes:
45+
label: Commit / version
46+
description: Output of `git rev-parse --short HEAD` or release tag.
47+
48+
- type: input
49+
id: env
50+
attributes:
51+
label: Environment
52+
description: OS, Python version, tool versions, etc.
53+
placeholder: "Arch Linux, Python 3.12, uv 0.4.x"
54+
55+
- type: textarea
56+
id: notes
57+
attributes:
58+
label: Additional context
59+
description: Anything else worth mentioning.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: true

.github/ISSUE_TEMPLATE/docs.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Docs issue
2+
description: Missing, incorrect, or unclear documentation.
3+
title: "docs: <short description>"
4+
labels: ["documentation"]
5+
body:
6+
- type: input
7+
id: location
8+
attributes:
9+
label: Page / file
10+
description: Path under `docs/` or URL of the page.
11+
placeholder: "docs/getting-started.md"
12+
validations:
13+
required: true
14+
15+
- type: textarea
16+
id: problem
17+
attributes:
18+
label: What's wrong or missing?
19+
validations:
20+
required: true
21+
22+
- type: textarea
23+
id: suggestion
24+
attributes:
25+
label: Suggested change
26+
description: Optional. Wording, structure, or new section idea.
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Feature request
2+
description: Suggest a new capability, section, or improvement.
3+
title: "feat: <short description>"
4+
labels: ["enhancement"]
5+
body:
6+
- type: textarea
7+
id: problem
8+
attributes:
9+
label: Problem / motivation
10+
description: What are you trying to do? Why does the current setup fall short?
11+
validations:
12+
required: true
13+
14+
- type: textarea
15+
id: proposal
16+
attributes:
17+
label: Proposed solution
18+
description: What would you like added or changed?
19+
validations:
20+
required: true
21+
22+
- type: textarea
23+
id: alternatives
24+
attributes:
25+
label: Alternatives considered
26+
description: Other approaches you thought about.
27+
28+
- type: textarea
29+
id: notes
30+
attributes:
31+
label: Additional context
32+
description: Links, screenshots, references, examples from other projects.

0 commit comments

Comments
 (0)