Skip to content

Commit

Permalink
ci(renovate): add renovate
Browse files Browse the repository at this point in the history
  • Loading branch information
TartanLeGrand committed Apr 12, 2024
1 parent 2bcdfd6 commit d10098a
Show file tree
Hide file tree
Showing 2 changed files with 98 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root = true

[*]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
89 changes: 89 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"packageRules": [
{
"groupName": "Actions dependencies",
"groupSlug": "actions-minor-patch",
"matchManagers": [
"github-actions"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"addLabels": [
"🤖 actions"
]
},
{
"groupName": "frontend dependencies",
"groupSlug": "frontend-minor-patch",
"matchManagers": [
"npm"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"addLabels": [
"🌐 frontend"
]
},
{
"groupName": "backend dependencies",
"groupSlug": "backend-minor-patch",
"matchManagers": [
"composer"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"addLabels": [
"🔙 backend"
]
},
{
"groupName": "docker dependencies",
"groupSlug": "docker-minor-patch",
"matchManagers": [
"dockerfile",
"docker-compose"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"addLabels": [
"🐳 docker"
]
},
{
"matchUpdateTypes": [
"major"
],
"addLabels": [
"🚨 major"
]
},
{
"matchUpdateTypes": [
"minor"
],
"addLabels": [
"✨ minor"
]
},
{
"matchUpdateTypes": [
"patch"
],
"addLabels": [
"🛠️ patch"
]
}
]
}

0 comments on commit d10098a

Please sign in to comment.