From 2694113c7bae4b3b77b564cd15cb3eef78eb3222 Mon Sep 17 00:00:00 2001 From: Jon Surrell Date: Mon, 7 Sep 2026 14:54:13 +0400 Subject: [PATCH 1/2] Staging: probe sentence in the wp_parse_args docblock --- src/wp-includes/functions.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/wp-includes/functions.php b/src/wp-includes/functions.php index 54b3eb30cdfe9..57c3a2cf161f4 100644 --- a/src/wp-includes/functions.php +++ b/src/wp-includes/functions.php @@ -5001,6 +5001,9 @@ function smilies_init() { * This function is used throughout WordPress to allow for both string or array * to be merged into another array. * + * STAGING PROBE: this sentence exists only to confirm the Code Reference + * preview renders the pull request's own docblock, not trunk's. + * * @since 2.2.0 * @since 2.3.0 `$args` can now also be an object. * From f0ad54004db0c6a9e944182256f15472a352af24 Mon Sep 17 00:00:00 2001 From: Jon Surrell Date: Tue, 8 Sep 2026 14:12:54 +0400 Subject: [PATCH 2/2] Staging: touch a test file to exercise the tests workflow --- .github/scripts/docs-playground-preview/test/parser.test.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/scripts/docs-playground-preview/test/parser.test.mjs b/.github/scripts/docs-playground-preview/test/parser.test.mjs index b38bb98e5fbc0..e6319d62046aa 100644 --- a/.github/scripts/docs-playground-preview/test/parser.test.mjs +++ b/.github/scripts/docs-playground-preview/test/parser.test.mjs @@ -1,3 +1,4 @@ +// Staging: touched to exercise the tests workflow and the stale-comment path. import assert from 'node:assert/strict'; import { mkdir, mkdtemp, readFile, symlink, writeFile } from 'node:fs/promises'; import os from 'node:os';