Skip to content

Commit f36c25c

Browse files
author
Konrad Michalik
authored
Merge pull request #19 from xima-media/issue-template
build: add github issue templates for bug reports and feature requests
2 parents f36ec60 + 1826837 commit f36c25c

3 files changed

Lines changed: 100 additions & 0 deletions

File tree

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
name: Bug report
2+
description: Create a bug report to help fixing issues and improve the extension.
3+
title: "[BUG]"
4+
labels:
5+
- bug
6+
assignees:
7+
- jackd248
8+
body:
9+
- type: input
10+
id: typo3-version
11+
attributes:
12+
label: TYPO3 version
13+
description: What TYPO3 version are you using?
14+
placeholder: 'e.g. 11.5.23'
15+
validations:
16+
required: true
17+
- type: input
18+
id: php-version
19+
attributes:
20+
label: PHP version
21+
description: What PHP version are you using?
22+
placeholder: 'e.g. 8.1.14'
23+
validations:
24+
required: true
25+
- type: input
26+
id: extension-version
27+
attributes:
28+
label: Extension version
29+
description: What version of EXT:solver are you using?
30+
placeholder: 'e.g. 0.1.0'
31+
validations:
32+
required: true
33+
- type: checkboxes
34+
id: composer-mode
35+
attributes:
36+
label: Composer mode
37+
description: Are you running TYPO3 in composer mode?
38+
options:
39+
- label: I'm running TYPO3 in composer mode.
40+
- type: input
41+
id: operating-system
42+
attributes:
43+
label: Operating system
44+
description: What operating system are you using?
45+
placeholder: 'e.g. macOS 11.4'
46+
validations:
47+
required: true
48+
- type: textarea
49+
attributes:
50+
label: Current behavior
51+
description: A clear and concise description of what the bug is.
52+
- type: textarea
53+
attributes:
54+
label: Expected behavior
55+
description: A clear and concise description of what you expected to happen.
56+
- type: textarea
57+
attributes:
58+
label: Steps to reproduce
59+
description: If possible, describe steps to reproduce the behavior.
60+
placeholder: |
61+
1. Go to '...'
62+
2. Click on '....'
63+
3. Scroll down to '....'
64+
4. See error
65+
- type: textarea
66+
attributes:
67+
label: Additional context
68+
description: Add any other context about the problem here.

.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: false
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Feature request
2+
description: Suggest a new idea or improvement for this project.
3+
title: "[FEATURE]"
4+
labels:
5+
- enhancement
6+
assignees:
7+
- jackd248
8+
body:
9+
- type: textarea
10+
attributes:
11+
label: Is your feature request related to a problem?
12+
description: A clear and concise description of what the problem is.
13+
placeholder: I'm always frustrated when [...]
14+
validations:
15+
required: true
16+
- type: textarea
17+
attributes:
18+
label: Describe the solution you'd like
19+
description: A clear and concise description of what you want to happen.
20+
validations:
21+
required: true
22+
- type: textarea
23+
attributes:
24+
label: Describe alternatives you've considered
25+
description: >
26+
A clear and concise description of any alternative solutions or features
27+
you've considered.
28+
- type: textarea
29+
attributes:
30+
label: Additional context
31+
description: Add any other context or screenshots about the feature request here.

0 commit comments

Comments
 (0)