From bbfe1efd16c3e4d13d240570106b3ec4834b00b1 Mon Sep 17 00:00:00 2001 From: Haytham Abuelfutuh Date: Tue, 28 Apr 2026 10:15:57 -0400 Subject: [PATCH] ci: add DCO config to allow remediation commits Configures the Probot DCO app to permit individual and third-party remediation commits, enabling sign-off backfill for branches with historical commits that lack matching Signed-off-by lines. Signed-off-by: Haytham Abuelfutuh --- .github/dco.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .github/dco.yml diff --git a/.github/dco.yml b/.github/dco.yml new file mode 100644 index 0000000000..1c082c96a9 --- /dev/null +++ b/.github/dco.yml @@ -0,0 +1,5 @@ +require: + members: false +allowRemediationCommits: + individual: true + thirdParty: true