Skip to content

Commit

Permalink
Merge pull request #387 from reactioncommerce/chore-roidrage-dco
Browse files Browse the repository at this point in the history
chore: Adopt Developer Certificate of Origin in documentation.
  • Loading branch information
spencern authored Jan 11, 2019
2 parents 858a9cc + ae48c91 commit 0acb38e
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- [Running and Developing Locally](./developing.md)
- [Repo Structure](./repo-structure.md)
- [Style Guide Development](./style-guide-development.md)
- [Contributing](./contributing.md)

### Editor Extensions

Expand Down
52 changes: 52 additions & 0 deletions docs/contributing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# Contributing

We're thrilled that you want to contribute to the Reaction Component Library!

Before submitting your first contribution, please consult the [official guide on contributing to the Reaction code base](https://docs.reactioncommerce.com/docs/contributing-to-reaction) first. The sections below are currently specific to the Reaction Component Library and should be considered in addition to the official guide.

# Signing your Commits

Contributing to the Reaction Component Library requires signing your work by way of signed Git commits.

The Reaction Component Library uses the Apache 2.0 license to allow our community and customers to use it in whichever way they please. It also helps foster open contributions.

As a contributor, we want to make sure that you understand your rights as the copyright holder. We also want to make sure that contributions done on behalf of companies (i.e. by their employees) are submitted with the acknowledgement that the contributor (employee) isn't the copyright holder (employer).

The Reaction Components Library is using a Developer Certificate of Origin (DCO), by way of signed commits, to help contributors acknowledge that they're aware of their rights, and that they have the authority to submit their contributions either on their or on their employer's behalf.

To sign off on the DCO for your commits, use the command `git commit -s` which adds a line to every commit that looks like this:

`Signed-Off-By: Jane Doe <[email protected]>`

We do ask that you use your full name and a valid email address in this process.

The DCO signoff is attached to every single commit, thereby stating that the committer agrees to the DCO as shown below or on <https://developercertificate.org/>.

```
Developer's Certificate of Origin 1.1
By making a contribution to this project, I certify that:
(a) The contribution was created in whole or in part by me and I
have the right to submit it under the open source license
indicated in the file; or
(b) The contribution is based upon previous work that, to the
best of my knowledge, is covered under an appropriate open
source license and I have the right under that license to
submit that work with modifications, whether created in whole
or in part by me, under the same open source license (unless
I am permitted to submit under a different license), as
Indicated in the file; or
(c) The contribution was provided directly to me by some other
person who certified (a), (b) or (c) and I have not modified
it.
(d) I understand and agree that this project and the contribution
are public and that a record of the contribution (including
all personal information I submit with it, including my
sign-off) is maintained indefinitely and may be redistributed
consistent with this project or the open source license(s)
involved.
```

0 comments on commit 0acb38e

Please sign in to comment.