From eca8fb7bd68f8ef5b378d2ce31778ecf3f6e1329 Mon Sep 17 00:00:00 2001 From: Aaron Feledy Date: Wed, 18 Feb 2026 17:31:33 -0600 Subject: [PATCH] docs: fix Netlify deploy failures and update outdated examples - Add docs.backdropcms.org to checklinks skipPatterns (returns 406 to bots) - Update PHP version example from 5.5 to 8.3 in config docs --- docs/config.md | 4 ++-- netlify.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/config.md b/docs/config.md index fa4da75..5311beb 100644 --- a/docs/config.md +++ b/docs/config.md @@ -35,12 +35,12 @@ Note that if the above config options are not enough, all Lando recipes can be f You can set `php` to any version that is available in our [php service](https://docs.lando.dev/plugins/php/index.html). However, you should consult the [Backdrop requirements](https://docs.backdropcms.org/documentation/system-requirements) to make sure that version is actually supported by Backdrop itself. -The [recipe config](https://docs.lando.dev/landofile/recipes.html#config) to set the Backdrop recipe to use `php` version `5.5` is shown below: +The [recipe config](https://docs.lando.dev/landofile/recipes.html#config) to set the Backdrop recipe to use `php` version `8.3` is shown below: ```yaml recipe: backdrop config: - php: '5.5' + php: '8.3' ``` ## Choosing a composer version diff --git a/netlify.toml b/netlify.toml index 34bb4a4..6fbd578 100644 --- a/netlify.toml +++ b/netlify.toml @@ -11,7 +11,7 @@ package = "netlify-plugin-checklinks" [context.deploy-preview.plugins.inputs] todoPatterns = [ "load", "CHANGELOG.html", "x.com", "twitter.com", "/v/" ] - skipPatterns = [ ".rss", ".gif", ".jpg" ] + skipPatterns = [ ".rss", ".gif", ".jpg", "docs.backdropcms.org" ] checkExternal = true