You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CONTRIBUTING.md
+49-2
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,13 @@
2
2
3
3
Thank you for your interest in Dapr Go SDK!
4
4
5
-
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution.
5
+
This project welcomes contributions and suggestions. Most contributions require you to signoff on your commits via
6
+
the Developer Certificate of Origin (DCO). When you submit a pull request, a DCO-bot will automatically determine
7
+
whether you need to provide signoff for your commit. Please follow the instructions provided by DCO-bot, as pull
8
+
requests cannot be merged until the author(s) have provided signoff to fulfill the DCO requirement.
9
+
You may find more information on the DCO requirements [below](#developer-certificate-of-origin-signing-your-work).
10
+
11
+
This project has adopted the [Contributor Covenant Code of Conduct](https://github.com/dapr/community/blob/master/CODE-OF-CONDUCT.md).
6
12
7
13
Contributions come in many forms: submitting issues, writing code, participating in discussions and community calls.
8
14
@@ -59,6 +65,47 @@ All contributions come through pull requests. To submit a proposed change, we re
59
65
60
66
A good way to communicate before investing too much time is to create a "Work-in-progress" PR and share it with your reviewers. The standard way of doing this is to add a "[WIP]" prefix in your PR's title and assign the **do-not-merge** label. This will let people looking at your PR know that it is not well baked yet.
61
67
68
+
### Developer Certificate of Origin: Signing your work
69
+
70
+
#### Every commit needs to be signed
71
+
72
+
The Developer Certificate of Origin (DCO) is a lightweight way for contributors to certify that they wrote or otherwise have the right to submit the code they are contributing to the project. Here is the full text of the [DCO](https://developercertificate.org/), reformatted for readability:
73
+
```
74
+
By making a contribution to this project, I certify that:
75
+
76
+
(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
77
+
78
+
(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
79
+
80
+
(c) The contribution was provided directly to me by some other person who certified (a), (b) or (c) and I have not modified it.
81
+
82
+
(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.
83
+
```
84
+
85
+
Contributors sign-off that they adhere to these requirements by adding a `Signed-off-by` line to commit messages.
0 commit comments