Skip to content

Commit 9c98d3e

Browse files
authored
Merge branch 'main' into dependabot/npm_and_yarn/src/Elastic.Documentation.Site/elastic/eui-104.0.0
2 parents 7933ecd + e695b05 commit 9c98d3e

File tree

4 files changed

+15
-12
lines changed

4 files changed

+15
-12
lines changed

.github/workflows/required-labels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
labels=$(yq '[.categories[].labels] + .exclude-labels | flatten | unique | sort | @tsv' .github/release-drafter.yml | tr '\t' ',')
2525
echo "labels=$labels" >> "${GITHUB_OUTPUT}"
2626
- id: check-labels
27-
uses: mheap/github-action-required-labels@388fd6af37b34cdfe5a23b37060e763217e58b03 # v5.5
27+
uses: mheap/github-action-required-labels@8afbe8ae6ab7647d0c9f0cfa7c2f939650d22509 # v5.5
2828
with:
2929
mode: exactly
3030
count: 1

src/Elastic.Documentation.Site/package-lock.json

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Elastic.Documentation.Site/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"globals": "16.2.0",
4141
"moment": "^2.30.1",
4242
"parcel": "2.15.2",
43-
"postcss": "8.5.5",
43+
"postcss": "8.5.6",
4444
"postcss-import": "16.1.0",
4545
"prettier": "3.5.3",
4646
"prettier-plugin-tailwindcss": "0.6.12",
@@ -56,7 +56,7 @@
5656
"highlight.js": "11.11.1",
5757
"htmx-ext-head-support": "2.0.4",
5858
"htmx-ext-preload": "2.1.1",
59-
"htmx.org": "2.0.4",
59+
"htmx.org": "2.0.5",
6060
"select-dom": "9.3.1",
6161
"tailwindcss": "4.1.10",
6262
"ua-parser-js": "2.0.3"

src/tooling/docs-assembler/Links/NavigationPrefixChecker.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ private async Task FetchAndValidateCrossLinks(DiagnosticsCollector collector, st
9898

9999
// Todo publish all relative folders as part of the link reference
100100
// That way we don't need to iterate over all links and find all permutations of their relative paths
101-
foreach (var (relativeLink, _) in linkReference.Links)
101+
foreach (var (relativeLink, linkMetadata) in linkReference.Links)
102102
{
103103
var navigationPaths = _uriResolver.ResolveToSubPaths(new Uri($"{repository}://{relativeLink}"), relativeLink);
104104
foreach (var navigationPath in navigationPaths)
@@ -116,6 +116,9 @@ private async Task FetchAndValidateCrossLinks(DiagnosticsCollector collector, st
116116
}
117117
else
118118
{
119+
if (_phantoms.Count > 0 && _phantoms.Contains(new Uri($"{repository}://{navigationPath}")))
120+
continue;
121+
119122
dictionary.Add(navigationPath, new SeenPaths
120123
{
121124
Repository = repository,

0 commit comments

Comments
 (0)