mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 12:49:52 +01:00
chore(dependency): automerge all JavaScript CI dependencies
Make a pass to have a full inventory of JavaScript dependencies that can be automerged because they only have an impact on the CI. It is easier than to examine them one by one when an update is proposed. - add packages:test which indirectly includes packages:jsUnitTest and a number of test dependencies such as vitest - add prefixes for dependencies which are known to be exclusively used for testing (playwright, ...) - add modules Refs: https://docs.renovatebot.com/presets-packages
This commit is contained in:
parent
a2c8fe0370
commit
d4bb667051
1 changed files with 16 additions and 3 deletions
|
@ -95,9 +95,22 @@
|
|||
"enabled": false
|
||||
},
|
||||
{
|
||||
"description": "Automerge some packages when ci succeeds",
|
||||
"extends": ["packages:linters"],
|
||||
"matchDepNames": ["github.com/PuerkitoBio/goquery", "vitest", "vite-string-plugin"],
|
||||
"description": "Automerge some packages when CI succeeds",
|
||||
"extends": ["packages:linters", "packages:test"],
|
||||
"matchDepNames": [
|
||||
"github.com/PuerkitoBio/goquery",
|
||||
"happy-dom",
|
||||
"markdownlint-cli",
|
||||
"updates",
|
||||
"vite-string-plugin",
|
||||
"@vue/test-utils"
|
||||
],
|
||||
"matchPackagePrefixes": [
|
||||
"@eslint-community/",
|
||||
"@playwright/",
|
||||
"@stoplight/spectral-cli",
|
||||
"@stylistic/"
|
||||
],
|
||||
"automerge": true
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue