From 0ec870ef9c210e206eddbfc30eb199a48c7b2095 Mon Sep 17 00:00:00 2001
From: Griefed <griefed@griefed.de>
Date: Tue, 10 Nov 2020 21:51:48 +0100
Subject: [PATCH] Add .github stuffs

---
 .github/ISSUE_TEMPLATE/bug-report.md          | 64 +++++++++++++++++++
 .github/ISSUE_TEMPLATE/config.yml             |  1 +
 .../ISSUE_TEMPLATE/documentation-request.md   | 14 ++++
 .github/ISSUE_TEMPLATE/pull_request.md        | 27 ++++++++
 4 files changed, 106 insertions(+)
 create mode 100644 .github/ISSUE_TEMPLATE/bug-report.md
 create mode 100644 .github/ISSUE_TEMPLATE/config.yml
 create mode 100644 .github/ISSUE_TEMPLATE/documentation-request.md
 create mode 100644 .github/ISSUE_TEMPLATE/pull_request.md

diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md
new file mode 100644
index 0000000..3d580bd
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug-report.md
@@ -0,0 +1,64 @@
+---
+name: Bug Report
+about: Report a bug with the container / image
+---
+
+* **What is the current behavior?**
+
+
+
+* **If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem**
+
+
+
+* **What is the expected behavior?**
+
+
+
+* **What is the motivation / use case for changing the behavior?**
+
+
+
+* **Please tell us about your environment:**
+
+   - Docker Image: griefed/image:tag e.g. griefed/d-zone:proxy
+   - docker & docker-compose Version: Use `docker version && docker-compose version`
+
+```
+Client: Docker Engine - Community
+ Version:           19.03.13
+ API version:       1.40
+ Go version:        go1.13.15
+ Git commit:        4484c46d9d
+ Built:             Wed Sep 16 17:02:52 2020
+ OS/Arch:           linux/amd64
+ Experimental:      false
+
+Server: Docker Engine - Community
+ Engine:
+  Version:          19.03.13
+  API version:      1.40 (minimum version 1.12)
+  Go version:       go1.13.15
+  Git commit:       4484c46d9d
+  Built:            Wed Sep 16 17:01:20 2020
+  OS/Arch:          linux/amd64
+  Experimental:     false
+ containerd:
+  Version:          1.3.7
+  GitCommit:        8fba4e9a7d01810a393d5d25a3621dc101981175
+ runc:
+  Version:          1.0.0-rc10
+  GitCommit:        dc9208a3303feef5b3839f4323d9beb36df0a9dd
+ docker-init:
+  Version:          0.18.0
+  GitCommit:        fec3683
+docker-compose version 1.25.0, build unknown
+docker-py version: 4.1.0
+CPython version: 3.8.5
+OpenSSL version: OpenSSL 1.1.1f  31 Mar 2020
+```
+
+  - Browser: [all | Chrome XX | Firefox XX | IE XX | Safari XX | Mobile Chrome XX | Android X.X Web Browser | iOS XX Safari | iOS XX UIWebView | iOS XX WKWebView ]
+
+* **Other information** (e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. stackoverflow, gitter, etc)
+
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
new file mode 100644
index 0000000..3ba13e0
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -0,0 +1 @@
+blank_issues_enabled: false
diff --git a/.github/ISSUE_TEMPLATE/documentation-request.md b/.github/ISSUE_TEMPLATE/documentation-request.md
new file mode 100644
index 0000000..66deb71
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/documentation-request.md
@@ -0,0 +1,14 @@
+---
+name: Documentation Request
+about: Request for documentation about a certain aspect of the docker image / container
+---
+
+# Documentation Request
+
+<!-- Delete this line and everything below it, but read below first for information on what you should include -->
+Please include the following:
+
+ * Links to any existing documentation if it exists but is unclear.
+ * Information on what feature/aspect of this container needs updating / expansion.
+ * What you're currently trying to do with the container that has led you to require the given feature.
+ * Some background on what information you might like to see in the documentation.
diff --git a/.github/ISSUE_TEMPLATE/pull_request.md b/.github/ISSUE_TEMPLATE/pull_request.md
new file mode 100644
index 0000000..9ba36a2
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/pull_request.md
@@ -0,0 +1,27 @@
+---
+name: Pull Request
+about: Pull request for a change / addition / fix you made to the repository.
+---
+
+* **Please check if the PR fulfills these requirements**
+- [ ] Tests for the changes have been added (for bug fixes / features)
+- [ ] Docs have been added / updated (for bug fixes / features)
+
+
+* **What kind of change does this PR introduce?** (Bug fix, feature, docs update, ...)
+
+
+
+* **What is the current behavior?** (You can also link to an open issue here)
+
+
+
+* **What is the new behavior (if this is a feature change)?**
+
+
+
+* **Does this PR introduce a breaking change?** (What changes might users need to make in their application due to this PR?)
+
+
+
+* **Other information**:
-- 
GitLab