From b3e735168db848308f063de15fb5f89e45eee060 Mon Sep 17 00:00:00 2001 From: Thomas Gaudin Date: Mon, 16 Mar 2026 00:42:48 +0100 Subject: [PATCH] Make 'do-not-merge' warning on Renovate PHP PR more visible --- renovate.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/renovate.json b/renovate.json index 61a23eb..8d7eb62 100644 --- a/renovate.json +++ b/renovate.json @@ -20,15 +20,16 @@ { "matchPackageNames": ["php"], "matchDatasources": ["docker"], - // Override helpers:pinGitHubActionDigests from config:best-practices since we explicitely + // Override docker:pinDigests from config:best-practices since we explicitely // want the latest PHP patch version and not a pinned Docker image "pinDigests": false, "prBodyNotes": [ - "**Do NOT merge this PR as-is!**", + "# :warning: Do NOT merge this PR as-is! :warning:", "", "This PR is only a reminder that a new PHP version is available, however Renovate doesn't allow us to do everything we need to do.", - "You need to _add_ the new PHP version to the `versions` array in `update.sh` instead of replacing the last.", - "You also need to update the `README.md` to list supported versions." + "You need to:", + " * **add** the new PHP version to the `versions` array in `update.sh` instead of replacing the last;", + " * update the `README.md` to list supported versions." ] } ]