Skip to content

Commit

Permalink
ci(config): stop updates for 0.7, enable PHP updates in renovate
Browse files Browse the repository at this point in the history
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
  • Loading branch information
blizzz committed Jan 30, 2025
1 parent 0091a06 commit 2667cb2
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/npm-audit-fix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
fail-fast: false
matrix:
branches: ['main', 'stable0.8', 'stable0.7']
branches: ['main', 'stable0.8']

name: npm-audit-fix-${{ matrix.branches }}

Expand Down
64 changes: 52 additions & 12 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,65 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
"config:base",
":semanticCommits",
":gitSignOff"
],
"timezone": "Europe/Berlin",
"schedule": [
"every weekend"
],
"reviewers": ["datenangebot", "enjeck"],
"labels": ["dependencies"],
"labels": [
"dependencies",
"3. to review"
],
"rangeStrategy": "bump",
"rebaseWhen": "conflicted",
"ignoreUnstable": false,
"baseBranches": [
"main",
"stable0.7"
"stable0.8"
],
"enabledManagers": [
"npm"
"npm",
"composer",
"github-actions"
],
"ignoreDeps": [
"node",
"npm"
],
"packageRules": [
{
"matchUpdateTypes": ["major", "minor"],
"matchBaseBranches": ["stable0.7"],
"enabled": false
"description": "Request JavaScript reviews",
"matchManagers": [
"npm"
],
"reviewers": [
"enjeck"
]
},
{
"description": "Request PHP reviews",
"matchManagers": [
"composer"
],
"reviewers": [
"blizzz"
]
},
{
"description": "Request maintainer reviews",
"matchManagers": [
"github-actions"
],
"extends": [
"schedule:monthly"
],
"reviewers": [
"enjeck",
"blizzz"
]
},
{
"groupName": "cypress",
Expand All @@ -45,19 +77,27 @@
]
},
{
"matchPackageNames": ["vue"],
"matchPackageNames": [
"vue"
],
"allowedVersions": "<3"
},
{
"matchPackageNames": ["vuex"],
"matchPackageNames": [
"vuex"
],
"allowedVersions": "<4"
},
{
"matchPackageNames": ["vue-router"],
"matchPackageNames": [
"vue-router"
],
"allowedVersions": "<4"
},
{
"matchPackageNames": ["@vue/test-utils"],
"matchPackageNames": [
"@vue/test-utils"
],
"allowedVersions": "<2"
}
]
Expand Down

0 comments on commit 2667cb2

Please sign in to comment.