.github/workflows/lychee.yml #55
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '**.md' | |
- '.github/workflows/lychee.yml' | |
pull_request: | |
paths: | |
- '**.md' | |
- '.github/workflows/lychee.yml' | |
schedule: | |
- cron: "0 0 * * 1" | |
jobs: | |
linkChecker: | |
# Use 20.04.5 until https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/16450 is resolved | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: lychee Link Checker | |
id: lychee | |
uses: lycheeverse/lychee-action@v1.5.4 | |
with: | |
args: --accept 200,429 --exclude "my.host" --exclude "file://*" --exclude "api.*.signalfx.com" --exclude "ingest.*.signalfx.com" --exclude "splunk.jfrog.io.*basearch" --exclude "localhost:*" --exclude "127.*:*" --exclude "splunk_gateway_url" --exclude ".*.cf-app.com" -v -n './*.md' './**/*.md' | |
- name: Fail if there were link errors | |
run: exit ${{ steps.lychee.outputs.exit_code }} | |
- name: Create Issue From File | |
if: failure() && github.event_name == 'schedule' | |
uses: peter-evans/create-issue-from-file@v4 | |
with: | |
title: Link Checker Report | |
content-filepath: ./lychee/out.md | |
labels: report, automated issue |