Skip to content

Commit 4ec670b

Browse files
committed
Add Developer Certificate of Origin (DCO) and update contribution guidelines
1 parent b249b80 commit 4ec670b

3 files changed

Lines changed: 60 additions & 0 deletions

File tree

.github/dco.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
require:
2+
members: false
3+
4+
allowRemediationCommits:
5+
individual: true
6+
thirdParty: true
7+
8+
exemptOrgs:
9+
- dependabot
10+
- github-actions
11+
12+
exemptBots:
13+
- dependabot[bot]
14+
- copilot-swe-agent[bot]

CONTRIBUTING.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,16 @@ git push origin feature/new-awesome-feature
5555
## 📢 Need Help?
5656
If you have any questions, feel free to open an **Issue** or join our **Discussions** section.
5757

58+
## ✨ Developer Certificate of Origin (DCO)
59+
60+
This project uses the [Developer Certificate of Origin (DCO)](DCO) instead of a traditional CLA. By contributing, you certify that you have the right to submit your work under the project's [MIT License](LICENSE).
61+
62+
To sign off on your commits, add the `-s` flag:
63+
64+
```sh
65+
git commit -s -m "Your commit message"
66+
```
67+
68+
This adds a `Signed-off-by: Your Name <your.email@example.com>` line to your commit, confirming that you agree to the DCO.
69+
5870
🚀 **Happy Coding!**

DCO

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
Developer Certificate of Origin
2+
Version 1.1
3+
4+
Copyright (C) 2004, 2006 The Linux Foundation and its contributors.
5+
6+
Everyone is permitted to copy and distribute verbatim copies of this
7+
license document, but changing it is not allowed.
8+
9+
10+
Developer's Certificate of Origin 1.1
11+
12+
By making a contribution to this project, I certify that:
13+
14+
(a) The contribution was created in whole or in part by me and I
15+
have the right to submit it under the open source license
16+
indicated in the file; or
17+
18+
(b) The contribution is based upon previous work that, to the best
19+
of my knowledge, is covered under an appropriate open source
20+
license and I have the right under that license to submit that
21+
work with modifications, whether created in whole or in part
22+
by me, under the same open source license (unless I am
23+
permitted to submit under a different license), as indicated
24+
in the file; or
25+
26+
(c) The contribution was provided directly to me by some other
27+
person who certified (a), (b) or (c) and I have not modified
28+
it.
29+
30+
(d) I understand and agree that this project and the contribution
31+
are public and that a record of the contribution (including all
32+
personal information I submit with it, including my sign-off) is
33+
maintained indefinitely and may be redistributed consistent with
34+
this project or the open source license(s) involved.

0 commit comments

Comments
 (0)