You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@age.apache.org by jo...@apache.org on 2021/11/30 20:19:01 UTC

[incubator-age] branch master updated: chore: create issue templates (#90)

This is an automated email from the ASF dual-hosted git repository.

joshinnis pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-age.git


The following commit(s) were added to refs/heads/master by this push:
     new fff550c  chore: create issue templates (#90)
fff550c is described below

commit fff550c6af8e870bb7584c8a47f88379bb649aff
Author: Alex Kwak <ta...@kakao.com>
AuthorDate: Wed Dec 1 05:18:57 2021 +0900

    chore: create issue templates (#90)
    
    * chore: create issue templates
    * chore: applied suggestion to bug_report.md
---
 .github/ISSUE_TEMPLATE/bug_report.md      | 49 +++++++++++++++++++++++++++++++
 .github/ISSUE_TEMPLATE/feature_request.md | 20 +++++++++++++
 .github/ISSUE_TEMPLATE/qustion.md         | 10 +++++++
 3 files changed, 79 insertions(+)

diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
new file mode 100644
index 0000000..ab1c986
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug_report.md
@@ -0,0 +1,49 @@
+---
+name: Bug report
+about: Create a report to help us improve
+title: ''
+labels: bug
+assignees: ''
+
+---
+
+**Describe the bug**
+A clear and concise description of what the bug is.
+
+**How are you accessing AGE (Command line, driver, etc.)?**
+- [e.g. JDBC]
+
+**What data setup do we need to do?**
+```pgsql
+...
+SELECT * from cypher('my_graph_name', $$
+  CREATE (a:Part {part_num: '123'}), 
+         (b:Part {part_num: '345'}), 
+         (c:Part {part_num: '456'}), 
+         (d:Part {part_num: '789'})
+$$) as (a agtype);
+...
+```
+
+**What is the necessary configuration info needed?**
+- [e.g. Installed PostGIS]
+
+**What is the command that caused the error?**
+```pgsql
+SELECT * from cypher('my_graph_name', $$
+  MATCH (a:Part {part_num: '123'}), (b:Part {part_num: '345'})
+  CREATE (a)-[u:used_by { quantity: 1 }]->(b)
+$$) as (a agtype);
+```
+```
+ERROR:  something failed to execute
+```
+
+**Expected behavior**
+A clear and concise description of what you expected to happen.
+
+**Environment (please complete the following information):**
+- Version: [e.g. 0.4.0]
+
+**Additional context**
+Add any other context about the problem here.
diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md
new file mode 100644
index 0000000..11fc491
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/feature_request.md
@@ -0,0 +1,20 @@
+---
+name: Feature request
+about: Suggest an idea for this project
+title: ''
+labels: enhancement
+assignees: ''
+
+---
+
+**Is your feature request related to a problem? Please describe.**
+A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
+
+**Describe the solution you'd like**
+A clear and concise description of what you want to happen.
+
+**Describe alternatives you've considered**
+A clear and concise description of any alternative solutions or features you've considered.
+
+**Additional context**
+Add any other context or screenshots about the feature request here.
diff --git a/.github/ISSUE_TEMPLATE/qustion.md b/.github/ISSUE_TEMPLATE/qustion.md
new file mode 100644
index 0000000..576edb1
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/qustion.md
@@ -0,0 +1,10 @@
+---
+name: Qustion
+about: Create a question
+title: ''
+labels: question
+assignees: ''
+
+---
+
+