fix(ci): remove extra checks from php-composer (#70)

This commit is contained in:
2025-03-13 21:50:32 +02:00
committed by GitHub
parent acba21a852
commit 85811a09ab
2 changed files with 6 additions and 25 deletions

25
.github/renovate.json vendored
View File

@@ -1,33 +1,20 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>ivuorinen/renovate-config"
],
"extends": ["github>ivuorinen/renovate-config"],
"packageRules": [
{
"matchUpdateTypes": [
"minor",
"patch"
],
"matchUpdateTypes": ["minor", "patch"],
"matchCurrentVersion": "!/^0/",
"automerge": true
},
{
"matchDepTypes": [
"devDependencies"
],
"matchDepTypes": ["devDependencies"],
"automerge": true
}
],
"schedule": [
"before 4am on monday"
],
"schedule": ["before 4am on monday"],
"vulnerabilityAlerts": {
"labels": [
"security"
],
"assignees": [
"ivuorinen"
]
"labels": ["security"],
"assignees": ["ivuorinen"]
}
}