Skip to content

Commit

Permalink
update config, remove dependabot
Browse files Browse the repository at this point in the history
  • Loading branch information
Guite committed Apr 1, 2023
1 parent ee566be commit fe30a77
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 23 deletions.
17 changes: 0 additions & 17 deletions .github/dependabot.yml

This file was deleted.

6 changes: 0 additions & 6 deletions renovate.json

This file was deleted.

50 changes: 50 additions & 0 deletions renovate.json5
@@ -0,0 +1,50 @@
{
// all options: see https://docs.renovatebot.com/configuration-options/
$schema: 'https://docs.renovatebot.com/renovate-schema.json',
// configuration presets to use or extend
extends: ['config:base', 'group:symfony', 'docker:enableMajor'],
// ignore versions with unstable SemVer
ignoreUnstable: true,
// when is Renovate allowed to run
schedule: ['at any time'],
// enforce enablement of semantic commits
semanticCommits: 'enabled',
// separate major or minor branches if both updates exist
separateMajorMinor: true,
// separate minor or patch branches if both updates exist
separateMinorPatch: true,
// separate branches for multiple major updates
separateMultipleMajor: true,
// rules for matching package names
// see https://docs.renovatebot.com/configuration-options/#packagerules
packageRules: [
{
matchManagers: ['composer'],
rangeStrategy: 'update-lockfile',
},
// group all docker updates together
{
matchManagers: ['docker-compose', 'dockerfile'],
groupName: 'docker',
},
// group other updates with patch level
{
matchManagers: ['composer'],
matchUpdateTypes: ['patch'],
groupName: 'composer (patch)',
},
{
matchManagers: ['npm'],
matchUpdateTypes: ['patch'],
groupName: 'npm (patch)',
},
{
matchPackagePatterns: ['^doctrine'],
groupName: 'doctrine',
},
],
// required for Symfony Flex integration
// see https://github.com/renovatebot/renovate/pull/11990
allowPlugins: true,
ignorePlugins: false,
}

0 comments on commit fe30a77

Please sign in to comment.