Compare commits

...

4 commits

3 changed files with 16 additions and 3 deletions

View file

@ -9,6 +9,7 @@
"@typescript-eslint/parser", "@typescript-eslint/parser",
"eslint", "eslint",
"eslint-config-prettier", "eslint-config-prettier",
"eslint-plugin-svelte",
"lint-staged", "lint-staged",
"prettier" "prettier"
], ],

View file

@ -4,10 +4,11 @@
"packageRules": [ "packageRules": [
{ {
"matchPackageNames": [ "matchPackageNames": [
"github.com/aws/aws-sdk-go",
"github.com/burntsushi/toml", "github.com/burntsushi/toml",
"github.com/coreos/go-oidc",
"github.com/go-sql-driver/mysql", "github.com/go-sql-driver/mysql",
"go.mongodb.org/mongo-driver", "go.mongodb.org/mongo-driver",
"github.com/miekg/dns",
"github.com/ProtonMail/go-crypto", "github.com/ProtonMail/go-crypto",
"github.com/russross/blackfriday", "github.com/russross/blackfriday",
"github.com/studio-b12/gowebdav", "github.com/studio-b12/gowebdav",
@ -17,7 +18,17 @@
"github.com/yuin/goldmark" "github.com/yuin/goldmark"
], ],
"automerge": true, "automerge": true,
"automergeType": "branch" "automergeType": "branch",
"matchUpdateTypes": ["minor", "patch"]
},
{
"description": "Schedule AWS SDK updates on Sunday nights (8 PM - 12 AM)",
"matchPackageNames": [
"github.com/aws/aws-sdk-go"
],
"automerge": true,
"automergeType": "branch",
"schedule": ["* 20-23 * * 0"]
} }
], ],
"postUpdateOptions": [ "postUpdateOptions": [

View file

@ -16,5 +16,6 @@
"lockFileMaintenance": { "lockFileMaintenance": {
"enabled": true, "enabled": true,
"automerge": true "automerge": true
} },
"osvVulnerabilityAlerts": true
} }