Skip to content

Commit 96994f1

Browse files
chore: add oss templates (#1568)
* chore: add oss templates * chore: upd * chore: upd
1 parent 4b013ef commit 96994f1

6 files changed

Lines changed: 162 additions & 11 deletions

File tree

.changeset/fifty-lemons-flow.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
---
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
name: 🐛 Bug Report
2+
description: Report a bug with detailed reproduction steps
3+
body:
4+
- type: markdown
5+
attributes:
6+
value: |
7+
**Reproducibility is critical.** Provide exact steps so maintainers can reproduce instantly.
8+
9+
- type: textarea
10+
id: description
11+
attributes:
12+
label: What's happening?
13+
placeholder: Describe the bug in 1-2 sentences
14+
validations:
15+
required: true
16+
17+
- type: textarea
18+
id: reproduction
19+
attributes:
20+
label: Exact Reproduction Steps
21+
description: Copy-pasteable commands only
22+
placeholder: |
23+
1. Run command
24+
2. Change config/file
25+
3. Run another command
26+
4. See error
27+
value: |
28+
1.
29+
2.
30+
3.
31+
validations:
32+
required: true
33+
34+
- type: textarea
35+
id: expected
36+
attributes:
37+
label: Expected
38+
placeholder: What should happen
39+
validations:
40+
required: true
41+
42+
- type: textarea
43+
id: actual
44+
attributes:
45+
label: Actual
46+
placeholder: What actually happens
47+
validations:
48+
required: true
49+
50+
- type: textarea
51+
id: visuals
52+
attributes:
53+
label: Screenshots/Videos
54+
description: "**REQUIRED** - Visual proof of the issue"
55+
placeholder: Drag screenshot/screencast here
56+
validations:
57+
required: true
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
name: 📚 Documentation Issue
2+
description: Report docs problems with screenshots
3+
body:
4+
- type: dropdown
5+
id: type
6+
attributes:
7+
label: Issue Type
8+
options:
9+
- Broken link
10+
- Typo/grammar
11+
- Missing docs
12+
- Outdated content
13+
- Unclear explanation
14+
validations:
15+
required: true
16+
17+
- type: input
18+
id: url
19+
attributes:
20+
label: URL
21+
placeholder: "https://lingo.dev/..."
22+
validations:
23+
required: true
24+
25+
- type: textarea
26+
id: issue
27+
attributes:
28+
label: Issue
29+
placeholder: What's wrong?
30+
validations:
31+
required: true
32+
33+
- type: textarea
34+
id: fix
35+
attributes:
36+
label: Fix
37+
placeholder: How to fix it?
38+
39+
- type: textarea
40+
id: screenshot
41+
attributes:
42+
label: Screenshot
43+
description: "**REQUIRED** - Show the issue"
44+
placeholder: Drag screenshot here
45+
validations:
46+
required: true
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: ✨ Feature Request
2+
description: Suggest a feature with clear use case
3+
body:
4+
- type: textarea
5+
id: problem
6+
attributes:
7+
label: Problem
8+
placeholder: What can't you do today?
9+
validations:
10+
required: true
11+
12+
- type: textarea
13+
id: solution
14+
attributes:
15+
label: Solution
16+
placeholder: How should it work?
17+
validations:
18+
required: true
19+
20+
- type: textarea
21+
id: visuals
22+
attributes:
23+
label: Visuals
24+
description: "**REQUIRED** - Show mockup/example"
25+
placeholder: Drag screenshot/diagram here
26+
validations:
27+
required: true
28+
29+
- type: textarea
30+
id: alternatives
31+
attributes:
32+
label: Workarounds
33+
placeholder: What have you tried?

.github/pull_request_template.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
## Summary
2+
[One sentence: what this PR does]
3+
4+
## Changes
5+
- [Key change 1]
6+
- [Key change 2]
7+
8+
## Testing
9+
**Business logic tests added:**
10+
- [ ] [Describe test 1 - what behavior it validates]
11+
- [ ] [Describe test 2 - what edge case it covers]
12+
- [ ] All tests pass locally
13+
14+
## Visuals
15+
**Required for UI/UX changes:**
16+
- [ ] Before/after screenshots attached
17+
- [ ] Video demo for interactions (< 30s)
18+
19+
## Checklist
20+
- [ ] Changeset added (if version bump needed)
21+
- [ ] Tests cover business logic (not just happy path)
22+
- [ ] No breaking changes (or documented below)
23+
24+
Closes #[issue-number]

ISSUE_TEMPLATE.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)