From 81984fd8cadd6973418fcdcf164b336a5136ec65 Mon Sep 17 00:00:00 2001 From: Rhuan Barreto Date: Sun, 26 Apr 2026 22:14:28 +0200 Subject: [PATCH] fix(ci): enable DCO sign-off for Renovate commits Renovate's `dco` option appends a `Signed-off-by` trailer to all commits it creates, satisfying the new DCO workflow check. Signed-off-by: Rhuan Barreto --- renovate.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index ead00d12..47a1cf3a 100644 --- a/renovate.json +++ b/renovate.json @@ -1,4 +1,5 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["local>archgate/renovate-config"] + "extends": ["local>archgate/renovate-config"], + "dco": true }