Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
mateipopa committed Dec 23, 2024
1 parent 8b86b61 commit b3d77a8
Showing 1 changed file with 29 additions and 21 deletions.
50 changes: 29 additions & 21 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,52 +5,60 @@
],
"enabledManagers": [
"dockerfile",
"regex"
"github-actions"
],
"dependencyDashboard": true,
"dependencyDashboardTitle": "Dependencies Dashboard",
"docker": {
"enabled": true,
"username": "renovate-bot",
"password": "{{secrets.GITHUB_TOKEN}}"
},
"packageRules": [
{
"description": "Internal image dependencies",
"matchCategories": [
"docker"
],
"enabled": false
},
{
"description": "Disable updates for Ubuntu base images",
"matchDatasources": [
"docker"
],
"matchPackagePatterns": [
"^ghcr.io/blockjoy/"
"matchPackageNames": [
"ubuntu"
],
"enabled": false
},
{
"description": "Internal image dependencies",
"matchDatasources": [
"docker"
],
"automerge": true,
"automergeType": "branch",
"groupName": "internal-dependencies",
"pinDigests": true
"followTag": "latest",
"pinDigests": true,
"versioning": "docker",
"matchPackageNames": [
"/^ghcr.io/blockjoy//"
]
}
],
"customManagers": [
{
"customType": "regex",
"fileMatch": [
"(^|/)Dockerfile$"
"^.+/Dockerfile$"
],
"matchStrings": [
"ARG (?<arg>.*?)_IMAGE=(?<depName>ghcr.io\\/blockjoy\\/[^:]+)(:(?<currentValue>[^\\s]+))?"
"ARG .*_IMAGE=ghcr.io/blockjoy/(?<depName>[^:]+):(?<currentValue>[^\\s]+)"
],
"datasourceTemplate": "docker",
"registryUrlTemplate": "https://ghcr.io",
"depNameTemplate": "{{{depName}}}",
"extractVersionTemplate": "^(?<version>.*?)$"
"currentValueTemplate": "latest",
"versioningTemplate": "docker"
}
],
"hostRules": [
{
"hostType": "docker",
"matchHost": "ghcr.io",
"username": "renovate-bot",
"password": "{{secrets.GITHUB_TOKEN}}"
}
"ignoreDeps": [
"ubuntu"
],
"prHourlyLimit": 0,
"prConcurrentLimit": 0
Expand Down

0 comments on commit b3d77a8

Please sign in to comment.