Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simplify renovate configuration #148

Open
chris3ware opened this issue Feb 17, 2025 · 0 comments
Open

Simplify renovate configuration #148

chris3ware opened this issue Feb 17, 2025 · 0 comments

Comments

@chris3ware
Copy link
Member

chris3ware commented Feb 17, 2025

Use the renovate security preset with custom parameters as required as opposed to full configuration.

See this link for the security preset:

https://docs.renovatebot.com/presets-security/

Suggested configuration:

{
  "$schema": "https://docs.renovatebot.com/renovate-schema.json",
  "commitMessageExtra": "",
  "commitMessageLowerCase": "never",
  "extends": ["security:only-security-updates"],
  "vulnerabilityAlerts": {
    "addLabels": ["security"],
    "commitMessagePrefix": "fix(deps): ",
    "rangeStrategy": "auto"
  }
}

This configuration uses the preset security update configuration, but remove the commit message suffix in favour of a label, allows upper case characters in the commit message and changes the prefix.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

1 participant