Skip to content

Commit a86aa36

Browse files
authored
add github templates
1 parent 1769555 commit a86aa36

File tree

4 files changed

+110
-0
lines changed

4 files changed

+110
-0
lines changed
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
name: Report a bug
2+
description: Create a report to help us improve
3+
body:
4+
- type: markdown
5+
attributes:
6+
value: |
7+
Hi, thank you for taking the time to create an issue! Before you get started, please ensure the following are correct:
8+
9+
- I'm using the [latest version of the Visual Editing library](https://github.com/directus/visual-editing/releases)
10+
- I'm using the [latest version of Directus](https://github.com/directus/directus/releases)
11+
- I've completed all [Troubleshooting Steps](https://docs.directus.io/getting-started/support/#troubleshooting-steps).
12+
- There's [no other issue](https://github.com/directus/visual-editing/issues?q=is%3Aissue) that already describes the problem.
13+
14+
_For issues specific to Directus Cloud projects, please reach out through [email protected]._
15+
- type: textarea
16+
attributes:
17+
label: Describe the Bug
18+
description: A clear and concise description of what the bug is.
19+
validations:
20+
required: true
21+
- type: textarea
22+
attributes:
23+
label: To Reproduce
24+
description:
25+
Steps to reproduce the behavior. Contributors should be able to follow the steps provided in order to reproduce
26+
the bug.
27+
validations:
28+
required: true
29+
- type: input
30+
attributes:
31+
label: Visual Editing Version
32+
placeholder: v1.x.x
33+
validations:
34+
required: true
35+
- type: input
36+
attributes:
37+
label: Directus Version
38+
placeholder: v11.x.x
39+
validations:
40+
required: true
41+
- type: dropdown
42+
id: deployment
43+
attributes:
44+
label: Hosting Strategy
45+
options:
46+
- Self-Hosted (Docker Image)
47+
- Self-Hosted (Custom)
48+
- Directus Cloud
49+
validations:
50+
required: true
51+
- type: input
52+
attributes:
53+
label: Database
54+
description: If applicable, the vendor and version of the database being used. For example, PostgreSQL 16.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Ask a question
4+
url: https://directus.chat/
5+
about: Please ask and answer questions here.

.github/ISSUE_TEMPLATE/feature.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Feature Request
2+
description: Create a feature request
3+
body:
4+
- type: markdown
5+
attributes:
6+
value: |
7+
Hi, thank you for taking the time to create a feature request! Before you get started, please ensure the following are correct:
8+
9+
- I'm using the [latest version of the Visual Editing library](https://github.com/directus/visual-editing/releases)
10+
- I'm using the [latest version of Directus](https://github.com/directus/directus/releases)
11+
- There's [no other issue](https://github.com/directus/visual-editing/issues?q=is%3Aissue) that already describes the feature.
12+
13+
- type: textarea
14+
attributes:
15+
label: Describe the Feature
16+
description: A clear and concise description of what the feature is.
17+
validations:
18+
required: true

.github/pull_request_template.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<!--
2+
3+
Heya! Thanks for opening a Pull Request! If your PR is implementing a new feature or fix for Directus Visual Editing, please make sure your PR adheres to the following requirements:
4+
5+
- The PR closes an issue
6+
- Tests are added/updated and are passing locally if applicable
7+
- Documentation was added/updated if applicable
8+
9+
Please make sure to "Link" the issue you're closing. Without a Linked issue, this PR won't be accepted.
10+
11+
-->
12+
13+
## Scope
14+
15+
What's changed:
16+
17+
- Lorem ipsum dolor sit amet
18+
- Consectetur adipiscing elit
19+
- Sed do eiusmod tempor incididunt
20+
21+
## Potential Risks / Drawbacks
22+
23+
- Lorem ipsum dolor sit amet
24+
- Consectetur adipiscing elit
25+
26+
## Review Notes / Questions
27+
28+
- I would like to lorem ipsum
29+
- Special attention should be paid to dolor sit amet
30+
31+
---
32+
33+
Fixes #\<num\>

0 commit comments

Comments
 (0)