From 3d2a7c203b3d503abec308ad97f86c3c231f1b66 Mon Sep 17 00:00:00 2001 From: Xiang Chen Date: Tue, 8 Oct 2019 23:20:24 +0200 Subject: [PATCH] Create issue and PR templates --- .github/ISSUE_TEMPLATE/bug_report.md | 28 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 17 ++++++++++++++ .github/ISSUE_TEMPLATE/usage_problem.md | 15 ++++++++++++ .github/pull_request_template.md | 12 ++++++++++ 4 files changed, 72 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/usage_problem.md create mode 100644 .github/pull_request_template.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000000..62caab35d2 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,28 @@ +--- +name: Bug report +about: Create a report to help us improve +--- + + +**What version of OR-tools and what language are you using?** +Version: master/v7.3/v7.2 etc. +Language: C++/Java/Python/C# + +**Which solver are you using (e.g. CP-SAT, Routing Solver, GLOP, BOP, Gurobi)** + +**What operating system (Linux, Windows, ...) and version?** + +**What did you do?** +Steps to reproduce the behavior: +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +**What did you expect to see** + +**What did you see instead?** + +Make sure you include information that can help us debug (full error message, model Proto). + +**Anything else we should know about your project / environment** \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000000..10072213cd --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,17 @@ +--- +name: Feature request +about: Suggest an idea for this project +--- + + +**What language and solver does this apply to?** +All, Python, Java, C#, C++ / CP-SAT, Routing, Linear Solver + +**Describe the problem you are trying to solve.** + +**Describe the solution you'd like** + +**Describe alternatives you've considered** + +**Additional context** +Add any other context or screenshots about the feature request here. \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/usage_problem.md b/.github/ISSUE_TEMPLATE/usage_problem.md new file mode 100644 index 0000000000..70872fc7b9 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/usage_problem.md @@ -0,0 +1,15 @@ +--- +name: Modeling/Usage problem +about: Need help creating your model +--- + + +**What language and solver are you using?** +Python, Java, C#, C++ / CP-SAT, Routing, Linear Solver + +**Describe the problem you are trying to solve.** + +**Describe what you have tried** + +**Additional context** +Add any other context or code sample here. \ No newline at end of file diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000000..5fce142e3c --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,12 @@ + \ No newline at end of file