Skip to content

Commit 0acb38e

Browse files
authored
Merge pull request #387 from reactioncommerce/chore-roidrage-dco
chore: Adopt Developer Certificate of Origin in documentation.
2 parents 858a9cc + ae48c91 commit 0acb38e

File tree

2 files changed

+53
-0
lines changed

2 files changed

+53
-0
lines changed

docs/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
- [Running and Developing Locally](./developing.md)
77
- [Repo Structure](./repo-structure.md)
88
- [Style Guide Development](./style-guide-development.md)
9+
- [Contributing](./contributing.md)
910

1011
### Editor Extensions
1112

docs/contributing.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# Contributing
2+
3+
We're thrilled that you want to contribute to the Reaction Component Library!
4+
5+
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.
6+
7+
# Signing your Commits
8+
9+
Contributing to the Reaction Component Library requires signing your work by way of signed Git commits.
10+
11+
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.
12+
13+
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).
14+
15+
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.
16+
17+
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:
18+
19+
`Signed-Off-By: Jane Doe <[email protected]>`
20+
21+
We do ask that you use your full name and a valid email address in this process.
22+
23+
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/>.
24+
25+
```
26+
Developer's Certificate of Origin 1.1
27+
28+
By making a contribution to this project, I certify that:
29+
30+
(a) The contribution was created in whole or in part by me and I
31+
have the right to submit it under the open source license
32+
indicated in the file; or
33+
34+
(b) The contribution is based upon previous work that, to the
35+
best of my knowledge, is covered under an appropriate open
36+
source license and I have the right under that license to
37+
submit that work with modifications, whether created in whole
38+
or in part by me, under the same open source license (unless
39+
I am permitted to submit under a different license), as
40+
Indicated in the file; or
41+
42+
(c) The contribution was provided directly to me by some other
43+
person who certified (a), (b) or (c) and I have not modified
44+
it.
45+
46+
(d) I understand and agree that this project and the contribution
47+
are public and that a record of the contribution (including
48+
all personal information I submit with it, including my
49+
sign-off) is maintained indefinitely and may be redistributed
50+
consistent with this project or the open source license(s)
51+
involved.
52+
```

0 commit comments

Comments
 (0)