Skip to content

Commit

Permalink
github: add issue and pull request templates
Browse files Browse the repository at this point in the history
  • Loading branch information
indutny committed Feb 17, 2016
1 parent 7885b1d commit f95cc96
Show file tree
Hide file tree
Showing 2 changed files with 81 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
### Issue details

_Please provide issue details here_.

### Steps to reproduce/test case

_Please provide necessary steps for reproduction of this issue, or better the
reduced test case (without any external dependencies)_.

### Affected node.js versions

- [ ] v0.10
- [ ] v0.12
- [ ] v4.x
- [ ] v5.x
- [ ] master

### Affected platforms

- [ ] linux
- [ ] windows
- [ ] OS X
- [ ] freebsd
- [ ] solaris
- [ ] other _(please specify which)_

### Core part (if known)

- [ ] buffer
- [ ] child_process
- [ ] cluster
- [ ] crypto
- [ ] dgram
- [ ] dns
- [ ] fs
- [ ] http
- [ ] https
- [ ] net
- [ ] tls
- [ ] tty
- [ ] vm
- [ ] zlib
- [ ] other _(please specify which)_
38 changes: 38 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
### Description of change

_Please provide description of change here_.

### Pull Request check-list

_Please make sure to review and check all of these items_:

- [ ] Does `make test` pass after this change?
- [ ] Is commit message formatted according to [CONTRIBUTING.md][0]

### Affected core part(s)

- [ ] buffer
- [ ] child_process
- [ ] cluster
- [ ] crypto
- [ ] dgram
- [ ] dns
- [ ] fs
- [ ] http
- [ ] https
- [ ] net
- [ ] tls
- [ ] tty
- [ ] vm
- [ ] zlib
- [ ] other _(please specify which)_

### SemVer

What semver change does this change require?

- [ ] patch _(no new APIs, no breaking changes)_
- [ ] minor _(new APIs, no breaking changes)_
- [ ] major _(breaking changes, or just too dangerous to be minor/patch)_

[0]: https://github.com/nodejs/node/blob/master/CONTRIBUTING.md#step-3-commit

0 comments on commit f95cc96

Please sign in to comment.