Skip to content

Updated opensearch-php to reflect the latest OpenSearch API spec #472

Updated opensearch-php to reflect the latest OpenSearch API spec

Updated opensearch-php to reflect the latest OpenSearch API spec #472

Workflow file for this run

name: Link Checker
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
jobs:
linkchecker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: lychee Link Checker
id: lychee
uses: lycheeverse/lychee-action@v1
with:
args: --accept=200,403,429 "**/*.html" "**/*.md" "**/*.txt" "**/*.json" --exclude "https://github.com/\[your*" --exclude "https://localhost:9200" --exclude-mail
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Fail if there were link errors
run: exit ${{ steps.lychee.outputs.exit_code }}