Skip to content

Commit 98c49ff

Browse files
authored
Merge pull request #490 from wayofdev/feat/tpl-updates
2 parents 0337ec8 + 1c4a2e8 commit 98c49ff

File tree

4 files changed

+118
-29
lines changed

4 files changed

+118
-29
lines changed

.github/CODEOWNERS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
2+
3+
* @lotyp
Lines changed: 36 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22

3-
name: '🐞 Bug Report'
4-
description: 'Report an issue to help the project improve.'
5-
title: '[Bug] '
3+
name: 🐞 Bug Report
4+
description: Report an issue to help the project improve.
5+
title: '[Bug]: '
66
labels: ['type: bug']
77

88
assignees:
@@ -11,84 +11,91 @@ assignees:
1111
body:
1212
- type: markdown
1313
attributes:
14-
value: '🐞 Bug Report'
14+
value: 🐞 **Bug Report**
1515

1616
- type: textarea
1717
id: bug-description
1818
attributes:
19-
label: 'Describe the bug'
20-
description: 'A clear and concise description of what the bug is.'
21-
placeholder: 'Type here...'
19+
label: Describe the bug
20+
description: Please provide a clear and detailed description of what the bug is. This helps us understand the issue quickly and look for potential fixes.
21+
placeholder: Explain the bug in as much detail as possible...
2222
validations:
2323
required: true
2424

2525
- type: textarea
2626
id: regression
2727
attributes:
28-
label: 'Is this a regression?'
28+
label: Is this a regression?
2929
description: |
30-
'Did this behaviour use to work in the previous version?
31-
Yes, the last version in which this bug was not present was: ...'
32-
placeholder: 'Yes or No and details...'
30+
Was this functionality working in a previous version?
31+
If yes, please mention the last version in which it worked properly.
32+
Understanding regressions helps prioritize fixes.
33+
placeholder: Yes or No, and details about the last working version...
3334
validations:
3435
required: false
3536

3637
- type: textarea
3738
id: steps-to-reproduce
3839
attributes:
39-
label: 'To Reproduce'
40+
label: To Reproduce
4041
description: |
41-
'Steps to reproduce the error:
42+
'Please provide step-by-step instructions that reproduce the issue:
4243
1. Use x argument / navigate to...
4344
2. Fill this information...
4445
3. Go to...
45-
4. See error'
46-
placeholder: 'Describe the steps...'
46+
4. See error
47+
placeholder: Detailed steps to reproduce the bug...
4748
validations:
4849
required: true
4950

5051
- type: textarea
5152
id: expected-behaviour
5253
attributes:
53-
label: 'Expected behaviour'
54-
description: 'A clear and concise description of what you expected to happen.'
55-
placeholder: 'Type here...'
54+
label: Expected behaviour
55+
description: |
56+
Describe what you expected to happen.
57+
Clear expectations help understand the gap between current and desired states.
58+
placeholder: What did you expect to happen instead of the bug?
5659
validations:
5760
required: true
5861

5962
- type: textarea
6063
id: media
6164
attributes:
62-
label: 'Media prove'
63-
description: 'If applicable, add screenshots or videos to help explain your problem.'
64-
placeholder: 'Upload files or leave a link here...'
65+
label: Media prove
66+
description: If applicable, add screenshots or videos to better illustrate the issue. Visual aids can significantly aid in diagnosing problems quicker.
67+
placeholder: Upload files or paste links here...
6568
validations:
6669
required: false
6770

6871
- type: textarea
6972
id: environment
7073
attributes:
71-
label: 'Your environment'
74+
label: Your environment
7275
description: |
73-
'Please provide information about your environment.
76+
Provide detailed information about your environment to help us replicate the issue:
7477
* OS: [e.g. Ubuntu]
7578
* PHP version: [e.g. 8.2.2]
7679
* Package version: [e.g. 1.0.0]
77-
placeholder: 'Fill out all applicable fields...'
80+
* Any relevant environment details
81+
placeholder: List your environment details here...
7882
validations:
7983
required: false
8084

8185
- type: textarea
8286
id: additional-context
8387
attributes:
84-
label: 'Additional context'
85-
description: 'Add any other context or additional information about the problem here.'
86-
placeholder: 'Type here...'
88+
label: Additional context
89+
description: Include any other context about the problem here, such as unusual system configurations, previous issues, or possible causes.
90+
placeholder: Any additional information that could help us resolve the issue...
8791
validations:
8892
required: false
8993

9094
- type: markdown
9195
attributes:
9296
value: |
93-
📛 To expedite issue processing, please search open and closed issues before submitting a new one.
94-
Please read our Rules of Conduct at this repository's `.github/CODE_OF_CONDUCT.md` and the Contribution Guidelines at `.github/CONTRIBUTING.md` 📛
97+
📛 To ensure a smooth issue processing, please check if a similar bug report has already been submitted before creating a new one.
98+
We highly value your contributions, so please make sure to familiarize yourself with our repository's guidelines:
99+
- [Code of Conduct](.github/CODE_OF_CONDUCT.md)
100+
- [Contribution Guidelines](.github/CONTRIBUTING.md)
101+
📛
Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
---
2+
3+
name: 🚀 Feature Request
4+
description: Suggest an idea or possible new feature for this project.
5+
title: '[Feature]: '
6+
labels: ['type: enhancement']
7+
8+
assignees:
9+
- lotyp
10+
11+
body:
12+
- type: markdown
13+
attributes:
14+
value: 🚀 **Feature Request**
15+
16+
- type: textarea
17+
id: problem-related
18+
attributes:
19+
label: Is your feature request related to a problem? Please describe.
20+
description: |
21+
Please provide a clear and detailed description of what the problem is.
22+
For example, 'I'm always frustrated when...'.
23+
This will help us understand the context and the impact of the problem.
24+
placeholder: Describe the problem...
25+
validations:
26+
required: true
27+
28+
- type: textarea
29+
id: desired-solution
30+
attributes:
31+
label: "Describe the solution you'd like"
32+
description: |
33+
What would you like to see happen? Please provide a detailed explanation of the desired feature.
34+
You may include bullet points to outline objectives, key activities, and expected outcomes.
35+
placeholder: |
36+
1. Objective: [What you hope to achieve with this feature]
37+
2. Key Activities: [Steps to implement the feature]
38+
3. Expected Outcome: [Benefits and results of the feature]
39+
validations:
40+
required: true
41+
42+
- type: textarea
43+
id: alternative-solutions
44+
attributes:
45+
label: "Describe alternatives you've considered"
46+
description: |
47+
Are there alternative solutions or features you've considered? Please describe them.
48+
Understanding different possible solutions can help in finding the best path forward.
49+
placeholder: Describe any alternative solutions or workarounds you have considered...
50+
validations:
51+
required: false
52+
53+
- type: textarea
54+
id: additional-context
55+
attributes:
56+
label: Additional context
57+
description: |
58+
Add any other context or screenshots about the feature request here.
59+
Links to similar features, or visual aids that support your proposal, if applicable.
60+
placeholder: Insert any additional context or links to similar features here...
61+
validations:
62+
required: false
63+
64+
- type: markdown
65+
attributes:
66+
value: |
67+
📛 To ensure a smooth issue processing, please check if a similar feature request has already been submitted before creating a new one.
68+
We highly value your contributions, so please make sure to familiarize yourself with our repository's guidelines:
69+
- [Code of Conduct](.github/CODE_OF_CONDUCT.md)
70+
- [Contribution Guidelines](.github/CONTRIBUTING.md)
71+
📛

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
3+
blank_issues_enabled: true
4+
5+
contact_links:
6+
- name: Send an e-mail to the developer
7+
url: mailto:the@wayof.dev
8+
about: Please do NOT use this email to post issues or feature requests (only important business/personal contact).

0 commit comments

Comments
 (0)