From b93c86ee9fc348e4961ed17338ece06063243c95 Mon Sep 17 00:00:00 2001 From: Brian Muenzenmeyer Date: Thu, 19 Feb 2026 10:48:37 -0600 Subject: [PATCH] Set DCO configuration for remediation commit policies Configured DCO settings to allow individual remediation commits while disallowing third-party contributions. Members of the organization are not required to sign off on commits. --- .github/dco.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/dco.yml diff --git a/.github/dco.yml b/.github/dco.yml new file mode 100644 index 0000000..f48c76a --- /dev/null +++ b/.github/dco.yml @@ -0,0 +1,13 @@ +# https://github.com/cncf/dco2?#remediation-commits +allowRemediationCommits: + # Allow individual remediation commits + # https://github.com/cncf/dco2?#individual + individual: true + # DO NOT Allow third-party remediation commits + # https://github.com/cncf/dco2?#third-party + thirdParty: false + +require: + # Target contributors are NOT required to sign-off commits + # https://github.com/cncf/dco2?#skipping-sign-off-for-organization-members + members: false