mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2025-12-24 02:39:18 -05:00
34 lines
672 B
Plaintext
34 lines
672 B
Plaintext
{
|
|
$schema: 'https://docs.renovatebot.com/renovate-schema.json',
|
|
|
|
packageRules: [
|
|
// Default for all dependencies
|
|
{
|
|
matchPackagePatterns: ['*'],
|
|
semanticCommitType: 'chore',
|
|
semanticCommitScope: 'deps',
|
|
},
|
|
|
|
// Node.js runtime
|
|
{
|
|
matchPackageNames: ['node'],
|
|
semanticCommitType: 'build',
|
|
semanticCommitScope: 'node',
|
|
},
|
|
|
|
// GitHub Actions
|
|
{
|
|
matchManagers: ['github-actions'],
|
|
semanticCommitType: 'ci',
|
|
semanticCommitScope: 'actions',
|
|
},
|
|
|
|
// Docker
|
|
{
|
|
matchManagers: ['dockerfile'],
|
|
semanticCommitType: 'build',
|
|
semanticCommitScope: 'docker',
|
|
},
|
|
],
|
|
}
|