fix(ci): renovate init
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Markus Pesch 2021-10-30 15:22:07 +02:00
parent b3d34f7ce7
commit cf51ae8673
Signed by: volker.raschek
GPG Key ID: 852BCC170D81A982
2 changed files with 23 additions and 1 deletions

View File

@ -1,7 +1,7 @@
FROM docker.io/library/php:7.4-apache
# POSTFIXADMIN VERSION
ARG POSTFIXADMIN_VERSION
ARG POSTFIXADMIN_VERSION=3.3.9
# APACHE
ENV APACHE_DOCUMENT_ROOT /var/www/html/public

22
renovate.json Normal file
View File

@ -0,0 +1,22 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"automerge": false,
"automergeStrategy": "merge-commit",
"automergeType": "pr",
"rebaseLabel": "renovate/rebase",
"rebaseWhen": "behind-base-branch",
"regexManagers": [
{
"description": "Update postfixadmin git tag",
"fileMatch": [
"^Dockerfile$"
],
"matchStrings": [
"ARG POSTFIXADMIN_VERSION=(?<currentValue>.*?)\n"
],
"depNameTemplate": "postfixadmin/postfixadmin",
"datasourceTemplate": "github-tags",
"versioningTemplate": "regex:^(postfixadmin-)?(v)?(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)\\s"
}
]
}