Skip to content

Commit

Permalink
ci: update renovate configuration to support pre-commit (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
ariwk authored Jun 5, 2024
1 parent 357eacb commit 7d3807d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: Build & Release
on:
push:
branches: ['*']
branches: ['**/**']
pull_request:
branches: [main]
permissions:
Expand Down
19 changes: 9 additions & 10 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
"config:recommended",
":prNotPending",
":rebaseStalePrs",
":semanticCommits"
":semanticCommits",
":enablePreCommit"
],
"branchConcurrentLimit": 1,
"packageRules": [
{
"matchManagers": ["maven"],
"allowedVersions": "!/-jboss-|-redhat-|redhat-|-jenkins-|-patch-|-atlassian-|-NODEP$|-atlassian$|-jbossorg-|-SNAPSHOT$|-PFD-|-jbossas-|-does-not-exist|-tc$|-jahia1$/"
},
{
"matchManagers": ["maven"],
"matchDepTypes": ["provided", "runtime"],
"enabled": false
"matchManagers": [
"pre-commit"
],
"automerge": true,
"automergeType": "branch",
"ignoreTests": true
}
]
}

0 comments on commit 7d3807d

Please sign in to comment.