Skip to content

Commit 88c406e

Browse files
authored
Disable link checker from failing builds (opensearch-project#10832)
Changed the lychee link checker workflow to report broken links without failing the build. The checker will still run and display warnings for inaccessible URLs, but won't block CI/CD pipelines when external sites are temporarily unavailable. Signed-off-by: Daniel Rowe <[email protected]>
1 parent 83a0193 commit 88c406e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/links_checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Lychee Link Checker
1818
uses: lycheeverse/lychee-action@v1
1919
with:
20-
fail: true
20+
fail: false
2121
args: --accept=200,403,429 --base . --retry-wait-time=15 --max-retries=5 --exclude-path cypress/fixtures --exclude-path src/plugins/explore/public/components/data_table/data_table.mocks.ts "**/*.html" "**/*.md" "**/*.txt" "**/*.json" "**/*.js" "**/*.ts" "**/*.tsx"
2222
env:
2323
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 commit comments

Comments
 (0)