0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-08-22 19:38:35 +00:00

chore(doc): add a note about DCO to CONTRIBUTING.md (#574)

chore(doc): Add a note about DCO to CONTRIBUTING.md

Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com>
This commit is contained in:
Pavel Boldyrev 2023-09-19 23:10:05 -04:00 committed by GitHub
parent 5720fe4673
commit d0c9b4594d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -54,6 +54,28 @@ For example:
feat(vm): add support for the `clone` operation
```
In order for a code change to be accepted, you'll also have to accept the
Developer Certificate of Origin (DCO).
It's very lightweight, and you can find
it [here](https://developercertificate.org).
Accepting is accomplished by signing off on your commits, you can do this by
adding a `Signed-off-by` line to your commit message, like here:
```
feat(vm): add support for the `clone` operation
Signed-off-by: Random Developer <random@developer.example.org>
```
Git has a built-in flag to append this line automatically:
```
> git commit -s -m 'feat(vm): add a cool new feature'
```
You can find more details about the DCO checker in
the [DCO app repo](https://github.com/dcoapp/app).
## Submitting changes
Please create a new PR against the `main` branch which must be based on the