Skip to content

Commit 69d15d9

Browse files
authored
Merge pull request #140 from LibreCodeCoop/feat/issue-template
feat: add issue templates
2 parents e3da086 + ab6ddf2 commit 69d15d9

File tree

3 files changed

+118
-0
lines changed

3 files changed

+118
-0
lines changed
Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
# SPDX-FileCopyrightText: 2025 LibreCode coop and contributors
2+
# SPDX-License-Identifier: AGPL-3.0-or-later
3+
4+
name: Bug report
5+
description: Create a report to help us improve
6+
labels: ["bug"]
7+
assignees: "your-username"
8+
9+
body:
10+
- type: markdown
11+
attributes:
12+
value: |
13+
Thanks for taking the time to fill out this bug report!
14+
15+
- type: input
16+
id: title
17+
attributes:
18+
label: Describe the bug
19+
description: A clear and concise description of what the bug is.
20+
placeholder: ex. Failed to extract a zip file
21+
validations:
22+
required: true
23+
24+
- type: textarea
25+
id: reproduce
26+
attributes:
27+
label: To reproduce
28+
description: Steps to reproduce the behavior
29+
placeholder: |
30+
- I'm an authenticated user
31+
- Go to '...'
32+
- Click on '....'
33+
- Scroll down to '....'
34+
- See error
35+
validations:
36+
required: false
37+
38+
- type: input
39+
id: behavior
40+
attributes:
41+
label: Expected behavior
42+
description: A clear and concise description of what you expected to happen.
43+
44+
- type: textarea
45+
id: screenshots
46+
attributes:
47+
label: Screenshots
48+
placeholder: Press the button below to add screenshots.
49+
description: If applicable, add screenshots to help explain your problem.
50+
51+
- type: textarea
52+
id: environment
53+
attributes:
54+
label: Environment information
55+
description: Please complete the following infomation
56+
placeholder: |
57+
- OS: [e.g. Linux Debian, Docker]
58+
- Browser [e.g. chrome, safari]
59+
- Extract Version [e.g. 3.2.1]
60+
- Nextcloud Server Version [e.g. 24.0.1]
61+
- Logs (get the entries from nextcloud.log related with Extract i.e `tail -f data/nextcloud.log|grep extract`)
62+
validations:
63+
required: true
64+
65+
- type: textarea
66+
id: additional
67+
attributes:
68+
label: Additional context
69+
description: Add any other context about the problem here.
70+
validations:
71+
required: false

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# SPDX-FileCopyrightText: 2025 LibreCode coop and contributors
2+
# SPDX-License-Identifier: AGPL-3.0-or-later
3+
4+
blank_issues_enabled: false
5+
contact_links: []
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# SPDX-FileCopyrightText: 2025 LibreCode coop and contributors
2+
# SPDX-License-Identifier: AGPL-3.0-or-later
3+
4+
name: Feature request
5+
description: Suggest an idea for this project
6+
title: "[FEATURE]: "
7+
labels: ["feature-request"]
8+
assignees: "your-username"
9+
10+
body:
11+
- type: markdown
12+
attributes:
13+
value: |
14+
Thanks for taking the time to fill out this feature request!
15+
16+
- type: textarea
17+
id: problem
18+
attributes:
19+
label: Is your feature request related to a problem? Please describe.
20+
description: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
21+
validations:
22+
required: false
23+
24+
- type: textarea
25+
id: solution
26+
attributes:
27+
label: Describe the solution you'd like
28+
description: A clear and concise description of what you want to happen.
29+
validations:
30+
required: true
31+
32+
- type: textarea
33+
id: alternatives
34+
attributes:
35+
label: Describe alternatives you've considered
36+
description: A clear and concise description of any alternative solutions or features you've considered.
37+
38+
- type: textarea
39+
id: additional
40+
attributes:
41+
label: Additional context
42+
description: Add any other context or screenshots about the feature request here.

0 commit comments

Comments
 (0)