Skip to content

Commit

Permalink
doc: add github PR and Issue templates
Browse files Browse the repository at this point in the history
Give users reporting bugs a clearer idea of the info that will be
helpful when reporting issues.

Refs: https://github.com/nodejs/node/tree/master/.github
  • Loading branch information
gibfahn committed Jun 11, 2017
1 parent 35e1dbb commit daa95dc
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/ISSUE_TEMPLATE.md
@@ -0,0 +1,36 @@
<!--
Thank you for reporting an issue. The more information you can give us, the
better the chance we can fix your problem.
This issue tracker is for bugs and issues found within node-gyp,
if you have an issue installing a specific module, please file an issue on
that module's issue tracker (find the link with `npm issues modulename`).
Please fill in as much of the template below as you're able.
Node Version: output of `node -v` and `npm -v`
Platform: output of `uname -a` (UNIX), or version and 32 or 64-bit (Windows)
Compiler: output of `cc -v` (UNIX) or `msbuild.exe` (Windows)
Module: the module you tried to install.
-->

* **Node Version**:
* **Platform**:
* **Compiler**:
* **Module**:

<details><summary>Verbose output (from npm or node-gyp):</summary>

<!-- Paste your log between the backticks. If you can't find npm-debug.log then
do `export npm_config_loglevel=silly` (UNIX) or `set npm_config_loglevel=silly`
(Windows) before running the `npm install`/`node-gyp build` command, and paste
the output.
-->

```
```

</details>

<!-- Enter any further details below this comment. -->
16 changes: 16 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,16 @@
<!--
Thank you for your pull request. Please review below requirements.
Bug fixes and new features should include tests.
-->

##### Checklist
<!-- Remove items that do not apply. For completed items, change [ ] to [x]. -->

- [ ] `npm install && npm test` passes
- [ ] tests are included
- [ ] documentation is changed or added
- [ ] commit message follows [commit guidelines](https://github.com/nodejs/node/blob/master/CONTRIBUTING.md#commit-message-guidelines)

##### Description of change
<!-- Provide a description of the change below this comment. -->

0 comments on commit daa95dc

Please sign in to comment.