9 Commits

Author SHA1 Message Date
c170aaa085 Merge pull request 'chore(deps): update dependency postfixadmin/postfixadmin to v3.3.11' (#7) from renovate/postfixadmin-postfixadmin-3.x into master
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #7
2022-04-15 21:26:17 +00:00
a791674861 chore(deps): update dependency postfixadmin/postfixadmin to v3.3.11
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2022-04-15 11:48:56 +02:00
1c6d7bbbb3 fix(ci): matchPackageNames is an array
All checks were successful
continuous-integration/drone/push Build is passing
2022-04-15 11:48:31 +02:00
278bb991bf fix(ci): package rule to trim leading info from git version
Some checks reported errors
continuous-integration/drone/push Build was killed
2022-04-15 10:59:39 +02:00
d885a22ae4 fix(ci): extract version
All checks were successful
continuous-integration/drone/push Build is passing
2022-04-15 10:55:39 +02:00
56570f9fb8 fix(ci): renovate versionTemplate regexp
All checks were successful
continuous-integration/drone/push Build is passing
2022-04-15 10:34:07 +02:00
e29136e73a fix(ci): renovate search condition
All checks were successful
continuous-integration/drone/push Build is passing
2022-04-14 22:04:30 +02:00
6edd838968 chore(deps): update docker.io/volkerraschek/markdownlint docker tag to v0.31.1
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2022-02-09 19:32:47 +00:00
9a58c7c040 fix(ci): add package rules
All checks were successful
continuous-integration/drone/push Build is passing
2022-01-30 18:20:51 +01:00
4 changed files with 28 additions and 7 deletions

View File

@ -10,7 +10,7 @@ steps:
- name: markdown lint - name: markdown lint
commands: commands:
- markdownlint *.md - markdownlint *.md
image: docker.io/volkerraschek/markdownlint:0.30.0 image: docker.io/volkerraschek/markdownlint:0.31.1
resources: resources:
limits: limits:
cpu: 50 cpu: 50

View File

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

View File

@ -1,3 +1,7 @@
# POSTFIXADMIN_VERSION
# Only required to install a specifiy version
POSTFIXADMIN_VERSION?=3.3.11
# CONTAINER_RUNTIME # CONTAINER_RUNTIME
# The CONTAINER_RUNTIME variable will be used to specified the path to a # The CONTAINER_RUNTIME variable will be used to specified the path to a
# container runtime. This is needed to start and run a container image. # container runtime. This is needed to start and run a container image.

View File

@ -1,22 +1,39 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"automerge": false, "assignees": [ "volker.raschek" ],
"automergeStrategy": "merge-commit", "automergeStrategy": "merge-commit",
"automergeType": "pr", "automergeType": "pr",
"labels": [ "renovate" ],
"packageRules": [
{
"addLabels": [ "renovate/droneci", "renovate/automerge" ],
"automerge": true,
"matchManagers": "droneci",
"matchUpdateTypes": [ "minor", "patch"]
},
{
"description": "Trim leading postfixadmin- from git tag",
"addLabels": [ "renovate/postfixadmin" ],
"automerge": false,
"extractVersion": "^postfixadmin-(?<version>\\d+\\.\\d+\\.\\d+)$",
"matchPackageNames": [ "postfixadmin/postfixadmin" ],
"matchManagers": [ "regex" ]
}
],
"rebaseLabel": "renovate/rebase", "rebaseLabel": "renovate/rebase",
"rebaseWhen": "behind-base-branch", "rebaseWhen": "behind-base-branch",
"regexManagers": [ "regexManagers": [
{ {
"description": "Update postfixadmin git tag", "description": "Update postfixadmin git tag",
"fileMatch": [ "fileMatch": [
"^Dockerfile$" "^Makefile$"
], ],
"matchStrings": [ "matchStrings": [
"ARG POSTFIXADMIN_VERSION=(?<currentValue>.*?)\n" "POSTFIXADMIN_VERSION\\?=(?<currentValue>.*?)\n"
], ],
"depNameTemplate": "postfixadmin/postfixadmin",
"datasourceTemplate": "github-tags", "datasourceTemplate": "github-tags",
"versioningTemplate": "regex:^(postfixadmin-)?(v)?(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)\\s" "depNameTemplate": "postfixadmin/postfixadmin",
"versioningTemplate": "regex:^(postfixadmin-)?(v)?(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)(\\s*)?$"
} }
] ]
} }