Skip to content

Commit ae100e2

Browse files
committed
GitHub issue templates
1 parent 365e830 commit ae100e2

File tree

3 files changed

+80
-0
lines changed

3 files changed

+80
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Documentation Issue
2+
description: Report a problem or missing section in the documentation.
3+
labels: [documentation]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: "Thanks for helping improve the Inertia documentation! This form is for reporting issues with the content at [inertiajs.com](https://inertiajs.com), such as missing pages, incorrect examples, or unclear wording."
8+
- type: input
9+
attributes:
10+
label: URL or section
11+
description: Point to the page or section where the problem exists (or should exist).
12+
placeholder: e.g. https://inertiajs.com/forms
13+
validations:
14+
required: true
15+
- type: textarea
16+
attributes:
17+
label: What's missing or unclear?
18+
description: Describe what's wrong or missing. Be as specific as possible.
19+
validations:
20+
required: true
21+
- type: textarea
22+
attributes:
23+
label: Suggested improvement
24+
description: If possible, suggest how the documentation could better explain the topic.
25+
validations:
26+
required: false
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Website Issue
2+
description: Report a layout, navigation, or technical issue with inertiajs.com.
3+
labels: [website]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: "This form is for reporting bugs with the website itself — like layout problems, broken navigation, missing assets, or console errors. For content issues or missing documentation, please use the **Documentation Issue** template instead."
8+
- type: input
9+
attributes:
10+
label: Affected URL or section
11+
description: Provide the URL or section of the site where the issue occurs.
12+
placeholder: e.g. https://inertiajs.com/server-side-setup
13+
validations:
14+
required: true
15+
- type: textarea
16+
attributes:
17+
label: Describe the problem
18+
description: Describe what you're seeing that appears broken or incorrect. Include browser or device info if relevant.
19+
placeholder: |
20+
The mobile navigation toggle doesn't open on iOS Safari.
21+
I noticed this on iPhone 16 running iOS 26.
22+
No errors in the console.
23+
validations:
24+
required: true
25+
- type: textarea
26+
attributes:
27+
label: Steps to reproduce
28+
description: Include steps to reliably reproduce the issue. Screenshots or videos are helpful if available.
29+
placeholder: |
30+
1. Open the site on Safari mobile
31+
2. Tap the hamburger menu
32+
3. Nothing happens
33+
validations:
34+
required: true
35+
- type: textarea
36+
attributes:
37+
label: Additional context (optional)
38+
description: Add any other details, device info, screenshots, or links that might help.
39+
validations:
40+
required: false

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Feature Request
4+
url: https://github.com/inertiajs/inertia/discussions/new?category=ideas
5+
about: "For ideas or feature requests, start a new discussion"
6+
- name: Support Questions & Other
7+
url: https://github.com/inertiajs/inertia/discussions/new?category=help
8+
about: "This repository is only for reporting bugs. If you have a question or need help using the library, click:"
9+
- name: Bug in Inertia.js core or adapter
10+
url: https://github.com/inertiajs/inertia/issues/new/choose
11+
about: For bugs in the JS package (React/Vue/Svelte adapters), open an issue in the inertiajs/inertia repo
12+
- name: Bug in Laravel adapter
13+
url: https://github.com/inertiajs/inertia-laravel/issues/new/choose
14+
about: For backend-related bugs using the Laravel adapter, open an issue in the inertiajs/inertia-laravel repository

0 commit comments

Comments
 (0)