From 3d0b33b32fa10576012268c84e13bc0e3b7fc5a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 18 Feb 2016 08:28:15 +0100 Subject: [PATCH] Add templates for new issues and pull requests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See https://github.com/blog/2111-issue-and-pull-request-templates Signed-off-by: Michal Čihař --- .github/ISSUE_TEMPLATE.md | 26 ++++++++++++++++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 5 +++++ scripts/create-release.sh | 3 +++ 3 files changed, 34 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 0000000000..db0ed3b2c0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,26 @@ +### Steps to reproduce +1. +2. +3. + +### Expected behaviour +Tell us what should happen + +### Actual behaviour +Tell us what happens instead + +### Server configuration +**Operating system**: + +**Web server:** + +**Database:** + +**PHP version:** + +**phpMyAdmin version:** + +### Client configuration +**Browser:** + +**Operating system:** diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000000..94147d21c5 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,5 @@ +Before submitting pull request, please check that every commit: + +- [ ] Has proper Signed-Off-By +- [ ] Has commit message which describes it +- [ ] Is needed on it's own, if you have just minor fixes to previous commits, you can squash them diff --git a/scripts/create-release.sh b/scripts/create-release.sh index 7c48d1e084..0b53d8a807 100755 --- a/scripts/create-release.sh +++ b/scripts/create-release.sh @@ -148,6 +148,9 @@ echo "* Removing unneeded files" # if someone runs /test/wui.php and there are test failures rm -rf test +# Remove developer information +rm -rf .github + # Remove phpcs coding standard definition rm -rf PMAStandard