Skip to content

Commit

Permalink
Merge pull request #6247 from jasongrout/prtemplate
Browse files Browse the repository at this point in the history
Simplify PR template
  • Loading branch information
blink1073 committed Apr 27, 2019
2 parents 11d2e8f + 4d97190 commit e0a1d0c
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 18 deletions.
36 changes: 26 additions & 10 deletions .github/pull_request_template.md
@@ -1,10 +1,26 @@
Hi! Thanks for contributing to JupyterLab.
Please look through the checklist below before submitting your pull request.

- [ ] Look through open pull requests to see if someone has already started working on this.
- [ ] Note what issue(s) this pull request addresses. (We strongly encourage the community to open an issue describing proposed work before opening a pull request.)
- [ ] Provide a detailed description of the pull request. (Why are these changes necessary? How have they been implemented?)
- [ ] For UI/UX changes, include before/after screenshots
- [ ] Include a narrative description of visual or user interaction changes. How does your design effectively address the problem?
- [ ] Provide a list of Jupyterlab packages the pull request modifies.
- [ ] Describe any backwards incompatible changes to Jupyterlab’s public APIs.
<!--
Thanks for contributing to JupyterLab!
Please fill out the following items to submit a pull request.
See the contributing guidelines for more information:
https://github.com/jupyterlab/jupyterlab/blob/master/CONTRIBUTING.md
-->

## References

<!-- Note issue numbers this pull request addresses (should be at least one, see contributing guidelines above). -->

<!-- Note any other pull requests that address this issue and how this pull request is different. -->

## Code changes

<!-- Describe the code changes and how they address the issue. -->

## User-facing changes

<!-- Describe any visual or user interaction changes and how they address the issue. -->

<!-- For visual changes, include before and after screenshots here. -->

## Backwards-incompatible changes

<!-- Describe any backwards-incompatible changes to JupyterLab public APIs. -->
26 changes: 18 additions & 8 deletions CONTRIBUTING.md
Expand Up @@ -4,9 +4,9 @@ If you're reading this section, you're probably interested in contributing to
JupyterLab. Welcome and thanks for your interest in contributing!

Please take a look at the Contributor documentation, familiarize yourself with
using JupyterLab, and introduce yourself on the mailing list and share
what area of the project you are interested in working on. Please see also the
Jupyter [Community Guides](https://jupyter.readthedocs.io/en/latest/community/content-community.html).
using JupyterLab, and introduce yourself to the community (on the mailing list
or discourse) and share what area of the project you are interested in working
on. Please also see the Jupyter [Community Guides](https://jupyter.readthedocs.io/en/latest/community/content-community.html).

We have labeled some issues as [good first issue](https://github.com/jupyterlab/jupyterlab/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22) or [help wanted](https://github.com/jupyterlab/jupyterlab/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22)
that we believe are good examples of small, self-contained changes.
Expand All @@ -19,11 +19,7 @@ Jupyter project, please report it to
security reports, you can use [this PGP public
key](https://jupyter-notebook.readthedocs.io/en/stable/_downloads/ipython_security.asc).

## Tag Issues with Labels

Users without the commit rights to the jupyterlab repository can also tag the issues with labels. For example: To apply the label `foo` and `bar baz` to an issue, comment `@meeseeksdev tag foo "bar baz"` on the issue.

## General Guidelines
## General Guidelines for Contributing

For general documentation about contributing to Jupyter projects, see the
[Project Jupyter Contributor Documentation](https://jupyter.readthedocs.io/en/latest/contributor/content-contributor.html) and [Code of Conduct](https://github.com/jupyter/governance/blob/master/conduct/code_of_conduct.md).
Expand All @@ -45,6 +41,20 @@ installing a prettier
extension for your code editor and configuring it to format your code with
a keyboard shortcut or automatically on save.

## Submitting a Pull Request Contribution

Generally, an issue should be opened describing a piece of proposed work and the
issues it solves before a pull request is opened. This lets community members
participate in the design discussion, makes others aware of work being done, and
sets the stage for a fruitful community interaction. A pull request should
reference the issue it is addressing.

### Tag Issues with Labels

Users without the commit rights to the JupyterLab repository can tag issues with
labels using the `@meeseeksdev` bot. For example: To apply the label `foo` and
`bar baz` to an issue, comment `@meeseeksdev tag foo "bar baz"` on the issue.

## Setting Up a Development Environment

You can launch a binder with the latest JupyterLab master to test something (this may take a few minutes to load): [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/jupyterlab/jupyterlab/master?urlpath=lab-dev/)
Expand Down

0 comments on commit e0a1d0c

Please sign in to comment.