This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

at main 871 B View raw
1{ 2 "$schema": "https://docs.renovatebot.com/renovate-schema.json", 3 "extends": ["github>gwennlbh/renovate"], 4 "lockFileMaintenance": { 5 "enabled": true, 6 "automerge": true 7 }, 8 "packageRules": [ 9 { 10 "description": "Automerge non-major updates", 11 "matchUpdateTypes": ["minor", "patch"], 12 "automerge": true 13 }, 14 { 15 "groupName": "Watchexec", 16 "description": "Group all wathexec and watchexec-* since they depend on each other", 17 "matchPackageNames": ["watchexec", "watchexec-*"] 18 } 19 ], 20 "customManagers": [ 21 { 22 "customType": "regex", 23 "managerFilePatterns": [".github/workflows/*.yml"], 24 "matchStrings": [ 25 "https://github.com/Netflix/vmaf/releases/download/(?<currentValue>\\w+)/vmaf" 26 ], 27 "depNameTemplate": "Netflix/vmaf", 28 "datasourceTemplate": "github-releases" 29 } 30 ] 31}