Skip to content

Commit cc7af7d

Browse files
committed
Dont search for numberic keys
1 parent d541112 commit cc7af7d

File tree

1 file changed

+1
-1
lines changed
  • .github/workflows/docs-configuration-reference

1 file changed

+1
-1
lines changed

.github/workflows/docs-configuration-reference/run.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
function parseConfigKeys(string $doc, array $config, string $base, array &$missingKeys) {
4343
foreach ($config as $key => $value) {
44-
if (!str_contains($doc, $key)) {
44+
if (!is_numeric($key) && !str_contains($doc, $key)) {
4545
$missingKeys[] = $base . '.' . $key;
4646
}
4747
if (is_array($value)) {

0 commit comments

Comments
 (0)