Skip to content

Commit 5ca4839

Browse files
authored
Merge pull request #491 from wayofdev/feat/tpl-updates
2 parents 98c49ff + 14e31cc commit 5ca4839

File tree

4 files changed

+142
-6
lines changed

4 files changed

+142
-6
lines changed

.github/ISSUE_TEMPLATE/1-bug-report.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ body:
9696
value: |
9797
📛 To ensure a smooth issue processing, please check if a similar bug report has already been submitted before creating a new one.
9898
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-
📛
99+
- [Code of Conduct](https://github.com/wayofdev/laravel-package-tpl/blob/master/.github/CODE_OF_CONDUCT.md)
100+
- [Contribution Guidelines](https://github.com/wayofdev/laravel-package-tpl/blob/master/.github/CONTRIBUTING.md)
101+
102+
...

.github/ISSUE_TEMPLATE/2-feature-request.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ body:
6666
value: |
6767
📛 To ensure a smooth issue processing, please check if a similar feature request has already been submitted before creating a new one.
6868
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-
📛
69+
- [Code of Conduct](https://github.com/wayofdev/laravel-package-tpl/blob/master/.github/CODE_OF_CONDUCT.md)
70+
- [Contribution Guidelines](https://github.com/wayofdev/laravel-package-tpl/blob/master/.github/CONTRIBUTING.md)
71+
72+
...
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
---
2+
3+
name: 🧪 Failing Test
4+
description: Report failing tests or CI jobs.
5+
title: "[Test]: "
6+
labels: ["Type: Test"]
7+
8+
assignees:
9+
- lotyp
10+
11+
body:
12+
- type: markdown
13+
attributes:
14+
value: 🧪 **Failing Test**
15+
16+
- type: textarea
17+
id: failing-tests
18+
attributes:
19+
label: Which jobs/test(s) are failing
20+
description: Please specify which CI jobs or tests are failing. Include test names or job identifiers.
21+
placeholder: List the failing jobs or tests here...
22+
validations:
23+
required: true
24+
25+
- type: textarea
26+
id: reason-for-failure
27+
attributes:
28+
label: Reason for failure/description
29+
description: Explain why the test is failing or what might be missing to make it pass. If available, include error messages or output logs.
30+
placeholder: Provide details on why the test is failing, including error logs or output messages...
31+
validations:
32+
required: true
33+
34+
- type: textarea
35+
id: media-prove
36+
attributes:
37+
label: Media prove
38+
description: If applicable, add screenshots, videos, or links to logs that help explain the issue. Visual aids can be very helpful in diagnosing problems.
39+
placeholder: Upload files or paste links here...
40+
validations:
41+
required: false
42+
43+
- type: textarea
44+
id: additional-context
45+
attributes:
46+
label: Additional context
47+
description: Add any other context about the problem, such as related issues, recent changes, or environmental specifics that might influence the test outcome.
48+
placeholder: Include any other relevant information that might help understand the issue...
49+
validations:
50+
required: false
51+
52+
- type: markdown
53+
attributes:
54+
value: |
55+
📛 To ensure a smooth issue processing, please check if a similar bug report has already been submitted before creating a new one.
56+
We highly value your contributions, so please make sure to familiarize yourself with our repository's guidelines:
57+
- [Code of Conduct](https://github.com/wayofdev/laravel-package-tpl/blob/master/.github/CODE_OF_CONDUCT.md)
58+
- [Contribution Guidelines](https://github.com/wayofdev/laravel-package-tpl/blob/master/.github/CONTRIBUTING.md)
Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
---
2+
3+
name: 📚 Documentation or README.md issue report
4+
description: Report an issue in the project's documentation or README.md file.
5+
title: "[Docs]: "
6+
labels: ["type: documentation", "type: maintenance"]
7+
8+
assignees:
9+
- lotyp
10+
11+
body:
12+
- type: markdown
13+
attributes:
14+
value: 📚 **Documentation Issue Report**
15+
16+
- type: textarea
17+
id: documentation-bug-description
18+
attributes:
19+
label: Describe the bug
20+
description: Provide a clear and concise description of what the error or issue is in the documentation.
21+
placeholder: Explain the issue with the documentation...
22+
validations:
23+
required: true
24+
25+
- type: textarea
26+
id: steps-to-reproduce
27+
attributes:
28+
label: To Reproduce
29+
description: |
30+
Please provide steps to reproduce the error in the documentation:
31+
1. Navigate to the section or URL where the error occurs...
32+
2. Specify the misleading or incorrect information...
33+
3. Suggest what is expected if applicable...
34+
placeholder: |
35+
1. URL or Section...
36+
2. Misleading information...
37+
3. Expected correction...
38+
validations:
39+
required: true
40+
41+
- type: textarea
42+
id: media-prove
43+
attributes:
44+
label: Media prove
45+
description: If applicable, add screenshots or videos to better illustrate the issue with the documentation.
46+
placeholder: Upload files or paste links here...
47+
validations:
48+
required: false
49+
50+
- type: textarea
51+
id: desired-solution
52+
attributes:
53+
label: Describe the solution you would like
54+
description: Describe what changes or improvements you would like to see in the documentation.
55+
placeholder: Describe the desired changes or improvements...
56+
validations:
57+
required: true
58+
59+
- type: textarea
60+
id: additional-context
61+
attributes:
62+
label: Additional context
63+
description: Add any other context or additional information that could help clarify the documentation issue.
64+
placeholder: Provide any additional context here...
65+
validations:
66+
required: false
67+
68+
- type: markdown
69+
attributes:
70+
value: |
71+
📛 To ensure a smooth issue processing, please check if a similar bug report has already been submitted before creating a new one.
72+
We highly value your contributions, so please make sure to familiarize yourself with our repository's guidelines:
73+
- [Code of Conduct](https://github.com/wayofdev/laravel-package-tpl/blob/master/.github/CODE_OF_CONDUCT.md)
74+
- [Contribution Guidelines](https://github.com/wayofdev/laravel-package-tpl/blob/master/.github/CONTRIBUTING.md)
75+
76+
...

0 commit comments

Comments
 (0)