mirror of
https://github.com/earthly/actions-setup.git
synced 2025-01-15 12:08:00 +08:00
23 lines
453 B
Plaintext
23 lines
453 B
Plaintext
{
|
|
$schema: "https://docs.renovatebot.com/renovate-schema.json",
|
|
extends: [
|
|
"config:recommended"
|
|
],
|
|
labels: [
|
|
'renovate',
|
|
],
|
|
packageRules: [
|
|
{
|
|
// group packages in the same PR according to data source & update type
|
|
matchManagers: [
|
|
'npm', 'github-actions',
|
|
],
|
|
groupName: "{{datasource}}_{{updateType}}",
|
|
addLabels: [
|
|
'{{datasource}}',
|
|
'{{updateType}}',
|
|
],
|
|
},
|
|
],
|
|
}
|