Add sumconnector (#5733) #3547
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' | |
- '.lychee.toml' | |
pull_request: | |
paths: | |
- '**.md' | |
- '.github/workflows/lychee.yml' | |
- '.lychee.toml' | |
schedule: | |
- cron: "0 0 * * 1" | |
jobs: | |
linkChecker: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: lychee Link Checker | |
id: lychee | |
uses: lycheeverse/lychee-action@v2.1.0 | |
with: | |
lycheeVersion: nightly # TODO: Change to stable once v0.17.1 is released, the version that includes a retry fix | |
args: -v -n --config .lychee.toml './*.md' './**/*.md' | |
fail: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Create Issue From File | |
if: failure() && github.event_name == 'schedule' | |
uses: peter-evans/create-issue-from-file@v5 | |
with: | |
title: Link Checker Report | |
content-filepath: ./lychee/out.md | |
labels: report, automated issue |