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

Use Renovate's sign-off preset #22

Merged
merged 1 commit into from
Jan 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions RENOVATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ possible presets have been chosen.
":combinePatchMinorReleases",
":enableVulnerabilityAlerts",
":timezone(UTC)",
":gitSignOff",
":label(renovate)",
"group:allNonMajor",
"schedule:daily",
Expand Down Expand Up @@ -86,6 +87,7 @@ minor releases for a single package will be combined to a single update.
should the repository have any vulnerability alerts (see below).
**[:timezone(UTC)](https://docs.renovatebot.com/presets-default/#timezonearg0)** - Not strictly necessary but ensures
schedules use the UTC timezone.
**[:gitSignOff](https://docs.renovatebot.com/presets-default/#gitsignoff)** - DCO requires all commits to be signed off.
**[:label(renovate)](https://docs.renovatebot.com/presets-default/#labelarg0)** - Add the label `renovate` to any PRs.
**[group:allNonMajor](https://docs.renovatebot.com/presets-group/#groupallnonmajor)** - Any non-major updates will be
grouped into a single update.
Expand All @@ -111,7 +113,6 @@ From https://docs.renovatebot.com/configuration-options/#vulnerabilityalerts:
### Other Settings

```json
"commitMessageSuffix": "\n\nSigned-off-by: Renovate Bot <[email protected]>",
"enabledManagers": ["composer", "dockerfile", "docker-compose", "github-actions"],
"lockFileMaintenance": {"enabled": true, "extends": ["schedule:daily"]},
"platformAutomerge": true,
Expand All @@ -120,7 +121,6 @@ From https://docs.renovatebot.com/configuration-options/#vulnerabilityalerts:
"rollbackPrs": true,
```

**[commitMessageSuffix](https://docs.renovatebot.com/configuration-options/#commitmessagesuffix)** - DCO requires all commits to be signed off.
**[enabledManagers](https://docs.renovatebot.com/configuration-options/#enabledmanagers)** - To begin with, this is
enabled for `composer`, `dockerfile`, `docker-compose` and `github-actions`. Other managers (such as `npm` etc) are also
available.
Expand Down
2 changes: 1 addition & 1 deletion renovate-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
":combinePatchMinorReleases",
":enableVulnerabilityAlerts",
":timezone(UTC)",
":gitSignOff",
":label(renovate)",
"group:allNonMajor",
"schedule:daily"
],
"commitMessageSuffix": "\n\nSigned-off-by: Renovate Bot <[email protected]>",
"enabledManagers": ["composer", "dockerfile", "docker-compose", "github-actions"],
"lockFileMaintenance": {"enabled": true, "extends": ["schedule:daily"]},
"platformAutomerge": true,
Expand Down