Skip to content

Commit e3b54e4

Browse files
authored
Modernize GitHub templates (issues and PRs) (#864)
1 parent 29f9415 commit e3b54e4

File tree

4 files changed

+98
-48
lines changed

4 files changed

+98
-48
lines changed

.github/ISSUE_TEMPLATE/bug.md

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
---
2+
name: Bug Report
3+
about: Report a bug in the Neo4j Python Driver
4+
labels: "bug"
5+
---
6+
7+
<!--
8+
If you are an Enterprise customer, you might want to head over to our
9+
[Customer Support Portal](https://support.neo4j.com/).
10+
-->
11+
12+
<!--
13+
If you are unsure about the usage of the driver, this issue tracker is not
14+
the right place to ask. Please use one of the following channels instead:
15+
16+
- Neo4j Online Community: https://community.neo4j.com/
17+
- StackOverflow: https://stackoverflow.com/questions/tagged/neo4j+python
18+
- Discord: https://discord.gg/neo4j
19+
- Neo4j Support Portal if you are an enterprise customer:
20+
https://support.neo4j.com/
21+
22+
or check the documentation:
23+
24+
- API documentation: https://neo4j.com/docs/api/python-driver/current/
25+
- Driver manual: https://neo4j.com/docs/python-manual/current/
26+
-->
27+
28+
<!--
29+
Make sure you've searched the issue tracker for similar issues first.
30+
-->
31+
32+
33+
# Bug Report
34+
<!-- description of the found bug -->
35+
36+
<!--
37+
Information to include:
38+
39+
Often, driver debug logs go a long way.
40+
See https://neo4j.com/docs/api/python-driver/current/api.html#logging on
41+
how to enable them.
42+
43+
Also, **full** stacktraces are very helpful if Exceptions are involved.
44+
45+
A minimal reproducer if possible
46+
https://stackoverflow.com/help/minimal-reproducible-example
47+
-->
48+
49+
50+
# My Environment
51+
Python Version: <!-- output of `python -VV` -->
52+
Driver Version: <!-- can be found with `python -m pip show neo4j` -->
53+
Server Version and Edition: <!-- e.g., Neo4j 4.4.3 enterprise cluster -->
54+
Operating System: <!-- e.g., Windows 10, Ubuntu 18.04, macOS 10.15 -->

.github/ISSUE_TEMPLATE/feature.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
name: Feature Request
3+
about: Suggest an idea for the Neo4j Python Driver
4+
labels: "feature request"
5+
---
6+
7+
# Feature Request
8+
<!-- a brief description of what's requested -->
9+
10+
# Pitch
11+
<!-- elaborate on the feature request and why it would be beneficial -->

.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+
Thanks for making the effort to create a Pull Request!
3+
Please read the comment in its entirety fist.
4+
5+
If you haven't already, please sign our Contributor License Agreement at
6+
https://neo4j.com/developer/cla/
7+
Commits from accounts that have not signed the CLA will fail the CI and
8+
will not be reviewed. If you are a first-time contributor and have just
9+
signed the CLA, please include a note about this in the PR comment as some
10+
manual steps from our side are required.
11+
-->
12+
13+
<!--
14+
Title:
15+
16+
PRs targeting the current default branch (nightly driver) don't follow a
17+
fixed naming scheme.
18+
19+
If your PR is a backport, please use the following naming scheme:
20+
21+
[targeted version] description
22+
23+
e.g.,
24+
25+
[4.4] Remove a banana from the code
26+
-->
27+
28+
<!--
29+
Description:
30+
31+
Please include a summary of the changes in this PR and their purpose.
32+
Link any related issues or PRs.
33+
-->

ISSUE_TEMPLATE.md

Lines changed: 0 additions & 48 deletions
This file was deleted.

0 commit comments

Comments
 (0)