Skip to content

Commit 700a08e

Browse files
Add issue templates (#125)
1 parent 059a48f commit 700a08e

File tree

3 files changed

+51
-0
lines changed

3 files changed

+51
-0
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Bug report
2+
description: Fill out a bug report to help us improve the Migrator.
3+
labels: [bug]
4+
body:
5+
- type: textarea
6+
attributes:
7+
label: Bug description
8+
description: What happened? What did you expect to happen? Feel free to drop any screenshots in here.
9+
placeholder: I did this thing over here, and saw this error...
10+
validations:
11+
required: true
12+
- type: textarea
13+
attributes:
14+
label: How to reproduce
15+
description: List the steps so we're able to recreate this bug. Bonus points if you can provide an example GitHub repo with this bug reproduced.
16+
placeholder: Go here, Type this, Click that, Look over there.
17+
validations:
18+
required: true
19+
- type: textarea
20+
attributes:
21+
label: Logs
22+
description: You can paste any relevant logs here, they'll be automatically rendered in code blocks. You can find your logs in `storage/logs`.
23+
render: shell
24+
- type: textarea
25+
attributes:
26+
label: Environment
27+
description: |
28+
Please paste the *full* output of the `php please support:details` command. It gives us some context about your project.
29+
render: yaml # the format of the command is close to yaml and gets highlighted nicely
30+
validations:
31+
required: true
32+
- type: textarea
33+
attributes:
34+
label: Additional details
35+
description: Fancy setup? Anything else you need to share?

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
blank_issues_enabled: false
2+
3+
contact_links:
4+
- name: Statamic Core
5+
url: https://github.com/statamic/cms/issues/new/choose
6+
about: This repository is for the Migrator. If you're having issues with Statamic itself, please open an issue on the cms repository.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: Feature Request
2+
description: Got an idea for a new feature or improvement in the Migrator? We'd love to hear it!
3+
labels: [feature request]
4+
body:
5+
- type: textarea
6+
attributes:
7+
label: Description
8+
description: What feature or improvement would you like to see? Feel free to provide as much detail as you can.
9+
validations:
10+
required: true

0 commit comments

Comments
 (0)