Skip to content

[Docathon] Fix Doc Format No.31 Update export_cn.rst (#7495) #6

[Docathon] Fix Doc Format No.31 Update export_cn.rst (#7495)

[Docathon] Fix Doc Format No.31 Update export_cn.rst (#7495) #6

Workflow file for this run

name: Link Checker
on:
repository_dispatch:
push:
branches:
- develop
workflow_dispatch:
schedule:
- cron: "00 18 * * 0"
jobs:
linkChecker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Link Checker
id: lychee
uses: lycheeverse/lychee-action@v2
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
with:
args: --verbose --no-progress --max-redirects 8 './**/*.md'
format: markdown
fail: false
output: lychee/results.md
- name: Create Issue From File
if: steps.lychee.outputs.exit_code != 0
uses: peter-evans/create-issue-from-file@v5
with:
title: Link Checker Report
content-filepath: ./lychee/results.md
labels: report, automated issue