Skip to content

Commit aef65a4

Browse files
committed
Issue templates
0 parents  commit aef65a4

File tree

3 files changed

+85
-0
lines changed

3 files changed

+85
-0
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
name: Bug Report
2+
description: File a bug report
3+
title: "[Bug]: "
4+
labels: []
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Before opening a bug report, please search for the behaviour in the existing issues.
10+
11+
---
12+
13+
Thank you for taking the time to file a bug report. To address this bug as fast as possible, we need some information.
14+
- type: input
15+
id: os
16+
attributes:
17+
label: Operating system version
18+
description: "Which version of macOS are you using?"
19+
placeholder: "macOS Ventura 13.3"
20+
validations:
21+
required: true
22+
- type: input
23+
id: herd_version
24+
attributes:
25+
label: Herd Version
26+
description: "Please provide the installed Herd version. You can find it in the Herd settings in the 'About' tab."
27+
placeholder: "1.0.6 (Build: 8)"
28+
validations:
29+
required: true
30+
- type: input
31+
id: php
32+
attributes:
33+
label: PHP Version
34+
description: "If your problem only occurs with a certain PHP version, please provide it in the field below."
35+
placeholder: "PHP 8.2.8 (cli) (built: Jul 7 2023 00:11:29) (NTS)"
36+
validations:
37+
required: false
38+
- type: textarea
39+
id: bug-description
40+
attributes:
41+
label: Bug description
42+
description: What happened and what did you expect to happen?
43+
validations:
44+
required: true
45+
- type: textarea
46+
id: steps
47+
attributes:
48+
label: Steps to reproduce
49+
description: Which steps do we need to take to reproduce this error?
50+
51+
- type: textarea
52+
id: logs
53+
attributes:
54+
label: Relevant log output
55+
description: If applicable, provide relevant log output. No need for backticks here.
56+
render: shell

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
blank_issues_enabled: true
2+
contact_links:
3+
- name: Check the docs
4+
url: https://herd.laravel.com/docs
5+
about: "This repository is for reporting bugs and proposing new features. If you need help with your first steps with Herd, check out the docs!"
6+
- name: Security vulnerabilities
7+
url: https://@beyondco.de
8+
about: If you want to report a security issue, please contact our support.

.github/ISSUE_TEMPLATE/feature.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Feature Request
2+
description: Propose a new feature for Herd
3+
title: "[Feature Request]: "
4+
labels: [feature request]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for proposing a feature for Herd!
10+
- type: textarea
11+
id: feature-description
12+
attributes:
13+
label: Feature Description
14+
description: How should this feature look like?
15+
validations:
16+
required: true
17+
- type: textarea
18+
id: valuable
19+
attributes:
20+
label: Is this feature valuable for other users as well and why?
21+
description: We want to build software that provides a great experience for all of us.

0 commit comments

Comments
 (0)