-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from camptocamp/dpkg-clone
Clone the image dict
- Loading branch information
Showing
17 changed files
with
127 additions
and
254 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,102 +1,28 @@ | ||
{ | ||
extends: ['config:base'], | ||
timezone: 'Europe/Zurich', | ||
schedule: 'after 5pm on the first day of the month', | ||
labels: ['dependencies'], | ||
separateMajorMinor: true, | ||
separateMinorPatch: true, | ||
prHourlyLimit: 0, | ||
prConcurrentLimit: 0, | ||
baseBranches: ['master'], | ||
'pre-commit': { enabled: true }, | ||
lockFileMaintenance: { | ||
enabled: true, | ||
automerge: true, | ||
schedule: 'after 5pm on the first day of the month', | ||
}, | ||
regexManagers: [ | ||
/** Do updates on pre-commit additional dependencies */ | ||
{ | ||
fileMatch: ['^\\.pre\\-commit\\-config\\.yaml$'], | ||
matchStrings: [" +- '?(?<depName>[^' @=]+)(@|==)(?<currentValue>[^' @=]+)'? # (?<datasource>.+)"], | ||
}, | ||
extends: [ | ||
'config:base', | ||
'github>camptocamp/gs-renovate-config-preset:base.json5#0.3.3', | ||
'github>camptocamp/gs-renovate-config-preset:ci.json5#0.3.3', | ||
'github>camptocamp/gs-renovate-config-preset:pre-commit.json5#0.3.3', | ||
'github>camptocamp/gs-renovate-config-preset:python.json5#0.3.3', | ||
'github>camptocamp/gs-renovate-config-preset:json-schema.json5#0.3.3', | ||
'github>camptocamp/gs-renovate-config-preset:shellcheck.json5#0.3.3', | ||
], | ||
minimumReleaseAge: '7 days', | ||
customManagers: [ | ||
/** Do update on the schema present in the ci/config.yaml */ | ||
{ | ||
fileMatch: ['^ci/config\\.yaml$'], | ||
matchStrings: [ | ||
'.*https://raw\\.githubusercontent\\.com/(?<depName>[^\\s]+)/(?<currentValue>[0-9\\.]+)/.*', | ||
], | ||
datasourceTemplate: 'github-tags', | ||
}, | ||
/** Python version in actions/setup-python action */ | ||
{ | ||
fileMatch: ['^\\.github/workflows/.*\\.yaml$'], | ||
matchStrings: [' python-version: [\'"](?<currentValue>[0-9\\.]+)[\'"]'], | ||
datasourceTemplate: 'python-version', | ||
depNameTemplate: 'python', | ||
customType: 'regex', | ||
}, | ||
{ | ||
fileMatch: ['^tag_publish/versions.yaml$'], | ||
matchStrings: ['(?<depName>.*): (?<currentValue>.*) # (?<datasource>.*)'], | ||
}, | ||
], | ||
packageRules: [ | ||
/** Automerge the patch, the minor and the dev dependency */ | ||
{ | ||
matchBaseBranches: ['master'], | ||
matchUpdateTypes: ['minor', 'patch'], | ||
automerge: true, | ||
}, | ||
/** Auto merge the dev dependency update */ | ||
{ | ||
matchDepTypes: ['devDependencies'], | ||
automerge: true, | ||
}, | ||
/** Group and auto merge the patch updates */ | ||
{ | ||
matchUpdateTypes: ['patch'], | ||
groupName: 'all patch versions', | ||
automerge: true, | ||
}, | ||
/** Group and auto merge the minor updates */ | ||
{ | ||
matchUpdateTypes: ['minor'], | ||
groupName: 'all minor versions', | ||
automerge: true, | ||
}, | ||
/** Group Poetry packages */ | ||
{ | ||
matchPackagePrefixes: ['poetry'], | ||
groupName: 'CI/build dependencies', | ||
automerge: true, | ||
}, | ||
/** Group and auto merge the CI dependencies */ | ||
{ | ||
matchFileNames: ['.github/**', '.pre-commit-config.yaml', 'ci/**'], | ||
groupName: 'CI/build dependencies', | ||
automerge: true, | ||
}, | ||
/** Accept only the patch on stabilization branches */ | ||
{ | ||
matchBaseBranches: ['/^[0-9]+\\.[0-9]+$/'], | ||
matchUpdateTypes: ['major', 'minor', 'pin', 'digest', 'lockFileMaintenance', 'rollback', 'bump'], | ||
enabled: false, | ||
}, | ||
/** Support the 4 parts of shellcheck-py version with a v prefix */ | ||
{ | ||
versioning: 'regex:^v(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)\\.(?<build>\\d+)$', | ||
matchDepNames: ['shellcheck-py/shellcheck-py'], | ||
}, | ||
/** Disable upgrading the supported Python version */ | ||
{ | ||
matchFileNames: ['pyproject.toml'], | ||
enabled: false, | ||
matchDepNames: ['python'], | ||
}, | ||
/** Packages published very recently are not pushed to stabilization branches for security reasons */ | ||
{ | ||
matchBaseBranches: ['/^[0-9]+\\.[0-9]+$/'], | ||
minimumReleaseAge: '7 days', | ||
customType: 'regex', | ||
}, | ||
], | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.