-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathrenovate-config.js
More file actions
40 lines (40 loc) · 1.05 KB
/
renovate-config.js
File metadata and controls
40 lines (40 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// eslint-disable-next-line import/no-commonjs
module.exports = {
extends: [
'config:base',
':disableMajorUpdates',
':ignoreModulesAndTests',
':pinVersions',
':rebaseStalePrs',
// Automatic merging is temporarily disabled.
// ':automergeDigest',
// ':automergePatch',
':automergePr',
':automergeRequireAllStatusChecks',
// ':automergeLinters',
// ':automergeTesters',
// ':automergeTypes',
'packages:eslint',
'workarounds:typesNodeVersioning',
'github>whitesource/merge-confidence:beta'
],
branchPrefix: 'renovate/',
platform: 'github',
repositories: ['OctopusDeploy/install-octopus-cli-action'],
packageRules: [
{
matchDatasources: ['npm'],
minimumReleaseAge: '2 days'
}
],
timezone: 'Australia/Brisbane',
onboarding: false,
requireConfig: false,
allowedPostUpgradeCommands: ['.*'],
allowShellExecutorForPostUpgradeCommands: true,
postUpgradeTasks: {
commands: ['npm install && npm run build'],
fileFilters: ['**/index.js'],
executionMode: 'update'
}
}