From 70967a481412b54c09035ab999ab09a37cc0fd32 Mon Sep 17 00:00:00 2001 From: Janos Pasztor Date: Tue, 24 Nov 2020 08:34:01 +0100 Subject: [PATCH] Added GitHub issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 34 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 17 ++++++++++++ .github/ISSUE_TEMPLATE/support.md | 20 +++++++++++++ .github/PULL_REQUEST_TEMPLATE/bug_fix.md | 20 +++++++++++++ .github/PULL_REQUEST_TEMPLATE/cleanup.md | 20 +++++++++++++ .github/PULL_REQUEST_TEMPLATE/feature.md | 20 +++++++++++++ 6 files changed, 131 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/support.md create mode 100644 .github/PULL_REQUEST_TEMPLATE/bug_fix.md create mode 100644 .github/PULL_REQUEST_TEMPLATE/cleanup.md create mode 100644 .github/PULL_REQUEST_TEMPLATE/feature.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..dcadad1 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,34 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: bug +assignees: janoszen + +--- + +
+

Describe the bug

+A clear and concise description of what the bug is. +
+ +
+

To Reproduce

+1. Run containerssh with these parameters +2. Do something else... +3. ... +
+ +
+

Expected behavior

+A clear and concise description of what you expected to happen. +
+ +
+

Version

+Please insert the output of `go version` here: +``` +$ go version +... +``` +
diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..453caa8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,17 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: feature +assignees: janoszen + +--- + +## Please describe what you would like to see in ContainerSSH +A clear and concise description of what you would like to see improved. + +## Please describe the solution you'd like +A clear and concise description of what you want to happen. + +## Please describe your use case +A clear and concise description of how you would use this feature. diff --git a/.github/ISSUE_TEMPLATE/support.md b/.github/ISSUE_TEMPLATE/support.md new file mode 100644 index 0000000..a763221 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/support.md @@ -0,0 +1,20 @@ +--- +name: Support request +about: If you need help using ContainerSSH +title: '' +labels: support +assignees: janoszen + +--- + +## Please describe what you need help with + +... + +## Have you read the readme in its entirety? + +... + +## What have you tried to resolve this problem? + +... diff --git a/.github/PULL_REQUEST_TEMPLATE/bug_fix.md b/.github/PULL_REQUEST_TEMPLATE/bug_fix.md new file mode 100644 index 0000000..84a10cc --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE/bug_fix.md @@ -0,0 +1,20 @@ +--- +name: Bug fix +about: Fix a bug +title: '' +labels: bug +assignees: janoszen + +--- + +## Please describe the bug you have fixed + +... + +## Are you the owner of the code you are sending in, or do you have permission of the owner? + +... + +## The code will be published under the MIT license. Have you read and understood this license? + +... diff --git a/.github/PULL_REQUEST_TEMPLATE/cleanup.md b/.github/PULL_REQUEST_TEMPLATE/cleanup.md new file mode 100644 index 0000000..d96235b --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE/cleanup.md @@ -0,0 +1,20 @@ +--- +name: Cleanup +about: Make the code more beautiful or add a build tool +title: '' +labels: cleanup +assignees: janoszen + +--- + +## Please describe what your cleanup is all about + +... + +## Are you the owner of the code you are sending in, or do you have permission of the owner? + +... + +## The code will be published under the MIT license. Have you read and understood this license? + +... \ No newline at end of file diff --git a/.github/PULL_REQUEST_TEMPLATE/feature.md b/.github/PULL_REQUEST_TEMPLATE/feature.md new file mode 100644 index 0000000..7bacfef --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE/feature.md @@ -0,0 +1,20 @@ +--- +name: Feature +about: Add a new feature +title: '' +labels: enhancement +assignees: janoszen + +--- + +## Please describe the feature you are adding + +... + +## Are you the owner of the code you are sending in, or do you have permission of the owner? + +... + +## The code will be published under the MIT license. Have you read and understood this license? + +... \ No newline at end of file