Skip to content

Commit

Permalink
add DCO to the project (#81)
Browse files Browse the repository at this point in the history
Signed-off-by: Clemens Grabmann <[email protected]>
  • Loading branch information
cgrabmann authored Aug 10, 2022
1 parent ab5456b commit c9967d1
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
28 changes: 28 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Contributing to the project

## Sign off Your Work

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/). Contributors must sign-off that they adhere to these requirements by adding a Signed-off-by line to commit messages.

```
This is my commit message
Signed-off-by: Random J Developer <[email protected]>
```

See git help commit:

```
-s, --signoff
Add Signed-off-by line by the committer at the end of the commit log
message. The meaning of a signoff depends on the project, but it typically
certifies that committer has the rights to submit this work under the same
license and agrees to a Developer Certificate of Origin (see
http://developercertificate.org/ for more information).
```

## How to Contribute

1. Fork this repository, develop, and test your changes
2. Remember to sign off your commits as described above
3. Submit a pull request
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -411,3 +411,7 @@ autoConfigure {
Each property here comes with an equivalent to the above mentioned sub-plugins. If you set a default value
on the root module here, and override it with a more specific value in the sub-module, then the latter will
always win.

## Contributing

- [Contributing to the project](CONTRIBUTING.md)

0 comments on commit c9967d1

Please sign in to comment.