Skip to content

chore(config): migrate Renovate config#13852

Merged
lqiu96 merged 1 commit into
googleapis:mainfrom
renovate-bot:renovate/migrate-config
Jul 21, 2026
Merged

chore(config): migrate Renovate config#13852
lqiu96 merged 1 commit into
googleapis:mainfrom
renovate-bot:renovate/migrate-config

Conversation

@renovate-bot

Copy link
Copy Markdown
Contributor

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.

@renovate-bot
renovate-bot requested review from a team as code owners July 21, 2026 19:41
@forking-renovate forking-renovate Bot mentioned this pull request Jul 21, 2026
25 tasks

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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.

Comment thread renovate.json
Comment on lines +66 to 72
"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$//"
],

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

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.

Suggested change
"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$/"
],

Comment thread renovate.json
Comment on lines +81 to 86
"managerFilePatterns": [
"//java-dns/README.md//",
"//java-notification/README.md//",
"//java-samples/native-image-sample/pom.xml//",
"//java-vertexai/README.md//"
],

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

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.

Suggested change
"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/"
],

Comment thread renovate.json
Comment on lines +95 to 98
"managerFilePatterns": [
"//.github/workflows/ci.yaml//",
"//.github/workflows/generated_files_sync.yaml//"
],

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

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.

Suggested change
"managerFilePatterns": [
"//.github/workflows/ci.yaml//",
"//.github/workflows/generated_files_sync.yaml//"
],
"managerFilePatterns": [
"/.github/workflows/ci.yaml/",
"/.github/workflows/generated_files_sync.yaml/"
],

Comment thread renovate.json
Comment on lines +107 to 109
"managerFilePatterns": [
"//^.github/workflows/unmanaged_dependency_check.yaml$//"
],

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

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.

Suggested change
"managerFilePatterns": [
"//^.github/workflows/unmanaged_dependency_check.yaml$//"
],
"managerFilePatterns": [
"/^.github/workflows/unmanaged_dependency_check.yaml$/"
],

@lqiu96
lqiu96 enabled auto-merge (squash) July 21, 2026 19:51
@lqiu96 lqiu96 added the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Jul 21, 2026
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Jul 21, 2026
@lqiu96

lqiu96 commented Jul 21, 2026

Copy link
Copy Markdown
Member

Ignoring the gemini code assist suggestions as this config migration came from renovate itself.

@lqiu96
lqiu96 merged commit fac78d6 into googleapis:main Jul 21, 2026
199 of 200 checks passed
@renovate-bot
renovate-bot deleted the renovate/migrate-config branch July 21, 2026 20:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants