-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doc: add github PR and Issue templates
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
Showing
2 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<!-- | ||
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 issues with node-gyp, | ||
if you have an issue installing a specific module, please file an issue on | ||
that module's issue tracker (`npm issues modulename`). | ||
--> | ||
|
||
* **Node Version**: <!-- `node -v` and `npm -v` --> | ||
* **Platform**: <!-- `uname -a` (UNIX), or `systeminfo | findstr /B /C:"OS Name" /C:"OS Version" /C:"System Type"` (Windows) --> | ||
* **Compiler**: <!-- `cc -v` (UNIX) or `msbuild /version & cl` (Windows) --> | ||
* **Module**: <!-- what you tried to build/install --> | ||
|
||
<details><summary>Verbose output (from npm or node-gyp):</summary> | ||
|
||
<!-- Paste your log between the backticks. Contents of npm-debug.log or verbose | ||
build output --> | ||
|
||
``` | ||
``` | ||
|
||
</details> | ||
|
||
<!-- Any further details --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<!-- | ||
Thank you for your pull request. Please review the below requirements. | ||
Contributor guide: https://github.com/nodejs/node/blob/master/CONTRIBUTING.md | ||
--> | ||
|
||
##### Checklist | ||
<!-- Remove items that do not apply. For completed items, change [ ] to [x]. --> | ||
|
||
- [ ] `npm install test` passes | ||
- [ ] tests are included <!-- Bug fixes and new features should include tests --> | ||
- [ ] 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 --> |