diff options
author | rubenwardy <rw@rubenwardy.com> | 2019-06-13 15:09:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-13 15:09:15 +0100 |
commit | f2c73def4b0c7fcfab521c0c54ada82a94b065c5 (patch) | |
tree | aaa733995f8e84d2069f9a380fa615ec6e92b0b5 | |
parent | 4c11574e9deeb583f00e8b890f21d87f0d81d816 (diff) | |
download | minetest-f2c73def4b0c7fcfab521c0c54ada82a94b065c5.tar.gz minetest-f2c73def4b0c7fcfab521c0c54ada82a94b065c5.tar.bz2 minetest-f2c73def4b0c7fcfab521c0c54ada82a94b065c5.zip |
Update Github templates (#8593)
-rw-r--r-- | .github/CONTRIBUTING.md (renamed from CONTRIBUTING.md) | 0 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.md (renamed from .github/ISSUE_TEMPLATE.md) | 15 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/feature_request.md | 25 | ||||
-rw-r--r-- | .github/PULL_REQUEST_TEMPLATE.md | 19 | ||||
-rw-r--r-- | .github/SECURITY.md | 20 |
5 files changed, 72 insertions, 7 deletions
diff --git a/CONTRIBUTING.md b/.github/CONTRIBUTING.md index b234fb283..b234fb283 100644 --- a/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE/bug_report.md index f6fc9ab0d..b6f351c15 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,10 +1,11 @@ -##### Issue type -<!-- Pick one below and delete others --> - - Bug report - - Feature request - - Documentation issue - - Build issue - +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: Unconfirmed bug +assignees: '' +--- + ##### Minetest version <!-- Paste Minetest version between quotes below diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 000000000..ebcfa98ee --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,25 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: Feature request +assignees: '' +--- + +## Problem + +A clear and concise description of what the problem is. +ie: Why is this needed? +Ex. I'm always frustrated when [...] + +## Solutions + +A clear and concise description of what you want to happen. + +## Alternatives + +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/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 000000000..ccec99bc5 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,19 @@ +Add compact, short information about your PR for easier understanding: + +- Goal of the PR +- How does the PR work? +- Does it resolve any reported issue? +- If not a bug fix, why is this PR needed? What usecases does it solve? + +## To do + +This PR is a Work in Progress / Ready for Review. +<!-- ^ delete one --> + +- [ ] List +- [ ] Things +- [ ] To do + +## How to test + +<!-- Example code or instructions --> diff --git a/.github/SECURITY.md b/.github/SECURITY.md new file mode 100644 index 000000000..e2dd0432f --- /dev/null +++ b/.github/SECURITY.md @@ -0,0 +1,20 @@ +# Security Policy + +## Supported Versions + +We only support the latest stable version for security issues. +See the [releases page](https://github.com/minetest/minetest/releases). + +## Reporting a Vulnerability + +We ask that you report vulnerabilities privately, by contacting a core developer, +to give us time to fix them. You can do that by emailing one of the following addresses: + +* celeron55@gmail.com +* rubenwardy@minetest.net + +Depending on severity, we will either create a private issue for the vulnerability +and release a patch version of Minetest, or give you permission to file the issue publicly. + +For more information on the justification of this policy, see +[Responsible Disclosure](https://en.wikipedia.org/wiki/Responsible_disclosure). |