From 5d57e177b9bb3fe2c0007c7f191e274b785bf62f Mon Sep 17 00:00:00 2001 From: Casper da Costa-Luis Date: Sun, 13 Nov 2016 13:52:19 +0000 Subject: [PATCH] Better GitHub contributing integrations Fixes #309 --- CONTRIBUTE => .github/CONTRIBUTING.md | 0 .github/ISSUE_TEMPLATE.md | 7 +++++++ .github/PULL_REQUEST_TEMPLATE.md | 8 ++++++++ MANIFEST.in | 2 +- README.rst | 2 +- 5 files changed, 17 insertions(+), 2 deletions(-) rename CONTRIBUTE => .github/CONTRIBUTING.md (100%) create mode 100644 .github/ISSUE_TEMPLATE.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/CONTRIBUTE b/.github/CONTRIBUTING.md similarity index 100% rename from CONTRIBUTE rename to .github/CONTRIBUTING.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 00000000..f30dc580 --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,7 @@ +- [ ] I have visited the [source website], and in particular + read the [known issues] +- [ ] I have searched through the [issue tracker] for duplicates + + [source website]: https://github.com/tqdm/tqdm/ + [known issues]: https://github.com/tqdm/tqdm/#help + [issue tracker]: https://github.com/tqdm/tqdm/issues?q= diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000..cf3b0b5a --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,8 @@ +- [ ] I have visited the [source website], and in particular + read the [known issues] +- [ ] I have searched through the [issue tracker] for duplicates +- [ ] If applicable, I have mentioned the relevant/related issue(s) in this PR + + [source website]: https://github.com/tqdm/tqdm/ + [known issues]: https://github.com/tqdm/tqdm/#help + [issue tracker]: https://github.com/tqdm/tqdm/issues?q= diff --git a/MANIFEST.in b/MANIFEST.in index f3f509fd..d05056b8 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,6 +1,6 @@ # Misc include .coveragerc -include CONTRIBUTE +include .github/CONTRIBUTING.md include LICENCE include logo.png # include images/logo.gif diff --git a/README.rst b/README.rst index 8dd58e63..b13623d2 100644 --- a/README.rst +++ b/README.rst @@ -683,7 +683,7 @@ All source code is hosted on `GitHub `__. Contributions are welcome. See the -`CONTRIBUTE `__ +`CONTRIBUTING `__ file for more information.