chore(config): migrate Renovate config#13852
Conversation
There was a problem hiding this comment.
Code Review
This pull request updates the Renovate configuration in renovate.json by migrating fileMatch fields to managerFilePatterns. However, the migration incorrectly wrapped several regex patterns in double slashes (//...//) instead of single slashes (/.../), which will prevent Renovate from matching the target files. The review comments correctly identify these syntax errors and provide actionable code suggestions to restore the single-slash format.
| "managerFilePatterns": [ | ||
| "//^.kokoro/nightly/graalvm-native.*.cfg$//", | ||
| "//^.kokoro/presubmit/graalvm-native.*.cfg$//", | ||
| "//^.kokoro/presubmit/*-graalvm-native-presubmit.cfg$//", | ||
| "//^.kokoro/nightly/graalvm-sub-jobs/native.*/common.cfg$//", | ||
| "//^owl-bot-postprocessor/synthtool/gcp/templates/java-library/.kokoro/presubmit/graalvm-native.*.cfg$//" | ||
| ], |
There was a problem hiding this comment.
The automated migration has incorrectly wrapped the regex patterns in double slashes (//...//) instead of single slashes (/.../). This will prevent Renovate from matching the target files correctly. Please use single slashes.
| "managerFilePatterns": [ | |
| "//^.kokoro/nightly/graalvm-native.*.cfg$//", | |
| "//^.kokoro/presubmit/graalvm-native.*.cfg$//", | |
| "//^.kokoro/presubmit/*-graalvm-native-presubmit.cfg$//", | |
| "//^.kokoro/nightly/graalvm-sub-jobs/native.*/common.cfg$//", | |
| "//^owl-bot-postprocessor/synthtool/gcp/templates/java-library/.kokoro/presubmit/graalvm-native.*.cfg$//" | |
| ], | |
| "managerFilePatterns": [ | |
| "/^.kokoro/nightly/graalvm-native.*.cfg$/", | |
| "/^.kokoro/presubmit/graalvm-native.*.cfg$/", | |
| "/^.kokoro/presubmit/*-graalvm-native-presubmit.cfg$/", | |
| "/^.kokoro/nightly/graalvm-sub-jobs/native.*/common.cfg$/", | |
| "/^owl-bot-postprocessor/synthtool/gcp/templates/java-library/.kokoro/presubmit/graalvm-native.*.cfg$/" | |
| ], |
| "managerFilePatterns": [ | ||
| "//java-dns/README.md//", | ||
| "//java-notification/README.md//", | ||
| "//java-samples/native-image-sample/pom.xml//", | ||
| "//java-vertexai/README.md//" | ||
| ], |
There was a problem hiding this comment.
The automated migration has incorrectly wrapped the regex patterns in double slashes (//...//) instead of single slashes (/.../). This will prevent Renovate from matching the target files correctly. Please use single slashes.
| "managerFilePatterns": [ | |
| "//java-dns/README.md//", | |
| "//java-notification/README.md//", | |
| "//java-samples/native-image-sample/pom.xml//", | |
| "//java-vertexai/README.md//" | |
| ], | |
| "managerFilePatterns": [ | |
| "/java-dns/README.md/", | |
| "/java-notification/README.md/", | |
| "/java-samples/native-image-sample/pom.xml/", | |
| "/java-vertexai/README.md/" | |
| ], |
| "managerFilePatterns": [ | ||
| "//.github/workflows/ci.yaml//", | ||
| "//.github/workflows/generated_files_sync.yaml//" | ||
| ], |
There was a problem hiding this comment.
The automated migration has incorrectly wrapped the regex patterns in double slashes (//...//) instead of single slashes (/.../). This will prevent Renovate from matching the target files correctly. Please use single slashes.
| "managerFilePatterns": [ | |
| "//.github/workflows/ci.yaml//", | |
| "//.github/workflows/generated_files_sync.yaml//" | |
| ], | |
| "managerFilePatterns": [ | |
| "/.github/workflows/ci.yaml/", | |
| "/.github/workflows/generated_files_sync.yaml/" | |
| ], |
| "managerFilePatterns": [ | ||
| "//^.github/workflows/unmanaged_dependency_check.yaml$//" | ||
| ], |
There was a problem hiding this comment.
The automated migration has incorrectly wrapped the regex patterns in double slashes (//...//) instead of single slashes (/.../). This will prevent Renovate from matching the target files correctly. Please use single slashes.
| "managerFilePatterns": [ | |
| "//^.github/workflows/unmanaged_dependency_check.yaml$//" | |
| ], | |
| "managerFilePatterns": [ | |
| "/^.github/workflows/unmanaged_dependency_check.yaml$/" | |
| ], |
|
Ignoring the gemini code assist suggestions as this config migration came from renovate itself. |
The Renovate config in this repository needs migrating. Typically this is because one or more configuration options you are using have been renamed.
You don't need to merge this PR right away, because Renovate will continue to migrate these fields internally each time it runs. But later some of these fields may be fully deprecated and the migrations removed. So it's a good idea to merge this migration PR soon.
🔕 Ignore: Close this PR and you won't be reminded about config migration again, but one day your current config may no longer be valid.
❓ Got questions? Does something look wrong to you? Please don't hesitate to request help here.
This PR was generated by Mend Renovate. View the repository job log.