fix: add :gitSignOff preset to Renovate config#334
Merged
Haz3-jolt merged 1 commit intoBlazeUp-AI:mainfrom Apr 16, 2026
Merged
Conversation
Closes BlazeUp-AI#333 Signed-off-by: Hemalatha Madeswaran <hemalathamadeswaran@gmail.com>
Contributor
|
Idk the legality of renovate doing DCO but sure |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #333
Purpose / Description
Renovate-generated PRs are failing the DCO sign-off check because the Renovate config is missing the
:gitSignOffpreset. This causes all automated dependency update PRs to be blocked by CI.Fixes
Approach
Added
:gitSignOffto theextendsarray inrenovate.json. This is Renovate's built-in preset that appends aSigned-off-by:line to every commit it generates, satisfying the DCO check.Before:
"extends": ["config:recommended"]After:
"extends": ["config:recommended", ":gitSignOff"]How Has This Been Tested?
:gitSignOffis a documented Renovate preset: https://docs.renovatebot.com/presets-default/#gitsignoffLearning (optional, can help others)
:gitSignOffpreset uses thecommitBodyoption under the hood to appendSigned-off-by: ...to all commitsChecklist
git commit -s) per the DCO