mirror of https://github.com/renovatebot/renovate
54 lines
939 B
Plaintext
54 lines
939 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`config/massage massageConfig does not massage lockFileMaintenance 1`] = `
|
|
{
|
|
"packageRules": [
|
|
{
|
|
"lockFileMaintenance": {
|
|
"enabled": true,
|
|
},
|
|
"matchBaseBranches": [
|
|
"release/ft10/1.9.x",
|
|
],
|
|
"matchManagers": [
|
|
"helmv3",
|
|
],
|
|
"schedule": [
|
|
"at any time",
|
|
],
|
|
},
|
|
],
|
|
}
|
|
`;
|
|
|
|
exports[`config/massage massageConfig massages packageRules matchUpdateTypes 1`] = `
|
|
{
|
|
"packageRules": [
|
|
{
|
|
"matchPackageNames": [
|
|
"foo",
|
|
],
|
|
"separateMajorMinor": false,
|
|
},
|
|
{
|
|
"matchPackageNames": [
|
|
"foo",
|
|
],
|
|
"matchUpdateTypes": [
|
|
"minor",
|
|
],
|
|
"semanticCommitType": "feat",
|
|
},
|
|
{
|
|
"matchPackageNames": [
|
|
"foo",
|
|
],
|
|
"matchUpdateTypes": [
|
|
"patch",
|
|
],
|
|
"semanticCommitType": "fix",
|
|
},
|
|
],
|
|
}
|
|
`;
|