Skip to content

Commit 131dc56

Browse files
create(issue-templates): add bug report and feature request templates (#138)
1 parent 983dfd4 commit 131dc56

3 files changed

Lines changed: 86 additions & 0 deletions

File tree

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: 🐛 Bug Report
2+
description: Report a problem with a custom format, profile, or regex
3+
labels: ["type: bug"]
4+
5+
body:
6+
- type: input
7+
id: which
8+
attributes:
9+
label: Which custom format/profile/regex?
10+
placeholder: e.g. Remux Tier 1, DV HDR10+, x265
11+
validations:
12+
required: true
13+
14+
- type: textarea
15+
id: whats-wrong
16+
attributes:
17+
label: What's wrong?
18+
description: Include the release title, whether it should or shouldn't have matched, and a Regex101 link if relevant.
19+
placeholder: |
20+
Release: Some.Movie.2024.2160p.UHD.BluRay.REMUX.DV.HDR.DTS-HD.MA.7.1-GROUP
21+
Expected: Should match Remux Tier 1
22+
Actual: Didn't match
23+
Regex101: https://regex101.com/...
24+
validations:
25+
required: true
26+
27+
- type: textarea
28+
id: screenshots
29+
attributes:
30+
label: Screenshots
31+
description: Interactive searches and movie/season history from your arrs are the most important info you can give. Without them, it's going to be much harder to solve this issue.
32+
placeholder: Drag and drop screenshots here

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
blank_issues_enabled: false
2+
3+
contact_links:
4+
- name: 💬 Support Question
5+
url: https://github.com/Dictionarry-Hub/database/discussions/new?category=q-a
6+
about: Ask questions and get help from the community
7+
8+
- name: 📚 Check the Docs
9+
url: https://dictionarry.dev
10+
about: Read the documentation before opening an issue

.github/ISSUE_TEMPLATE/feature.yml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: ✨ Feature Request
2+
description: Request new content or changes to existing content
3+
labels: ["type: feature"]
4+
5+
body:
6+
- type: dropdown
7+
id: what
8+
attributes:
9+
label: What do you want?
10+
options:
11+
- New profile
12+
- New custom format
13+
- New regex pattern
14+
- Changes to existing content
15+
- Other
16+
validations:
17+
required: true
18+
19+
- type: textarea
20+
id: description
21+
attributes:
22+
label: Description
23+
placeholder: Describe what you want in detail
24+
validations:
25+
required: true
26+
27+
- type: textarea
28+
id: why
29+
attributes:
30+
label: Why is this useful?
31+
placeholder: Explain your use case
32+
33+
- type: textarea
34+
id: screenshots
35+
attributes:
36+
label: Screenshots
37+
description: If relevant, include interactive searches or movie/season history from your arrs.
38+
placeholder: Drag and drop screenshots here
39+
40+
- type: input
41+
id: related
42+
attributes:
43+
label: Related issues
44+
placeholder: "#123, #456"

0 commit comments

Comments
 (0)