From abf5e8570081fc7e49ed8a9b8fc2d54b116103d4 Mon Sep 17 00:00:00 2001 From: Nathan Youngman Date: Mon, 10 Oct 2016 20:25:47 -0600 Subject: [PATCH] pull request and issue template (#179) * editor config sets 4 spaces per tab via https://github.com/isaacs/github/issues/170#issuecomment-181814560 [ci skip] * pull request and issue templates https://help.github.com/articles/helping-people-contribute-to-your-project/ [ci skip] * issue template: provide commands to get OS version suggested by @mdlayher [ci skip] --- .editorconfig | 5 +++++ .github/ISSUE_TEMPLATE.md | 11 +++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 8 ++++++++ 3 files changed, 24 insertions(+) create mode 100644 .editorconfig create mode 100644 .github/ISSUE_TEMPLATE.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..ba49e3c --- /dev/null +++ b/.editorconfig @@ -0,0 +1,5 @@ +root = true + +[*] +indent_style = tab +indent_size = 4 diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 0000000..4ad1aed --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,11 @@ +Before reporting an issue, please ensure you are using the latest release of fsnotify. + +### Which operating system (GOOS) and version are you using? + +Linux: lsb_release -a +macOS: sw_vers +Windows: systeminfo | findstr /B /C:OS + +### Please describe the issue that occurred. + +### Are you able to reproduce the issue? Please provide steps to reproduce and a code sample if possible. diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..64ddf7c --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,8 @@ +#### What does this pull request do? + + +#### Where should the reviewer start? + + +#### How should this be manually tested? + -- 2.50.1