fix(renovate): use /regex/ delimiters in fileMatch #16
Reference in New Issue
Block a user
Delete Branch "fix/renovate-filematch-regex"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Le vrai problème était que
fileMatch: ["^Dockerfile$"]sans les délimiteurs/ /est interprété comme un glob (recherche le fichier littéralement nommé^Dockerfile$), pas comme une regex.Corrections :
fileMatch: ["^Dockerfile$"]→fileMatch: ["/^Dockerfile$/"]—/ /pour indiquer une regex[0-9.]+→[\\w\\.-]+— pattern éprouvé (capture mieux les versions comme4.5.5,v0.19.0,v0.6.14-mt1)versioningTemplate: "semver"pour chaque manager[\\w\\.-]+au lieu de[0-9a-z.]+-mt\\d+