Skip to content

Update memo format and make memo updatable #3

Update memo format and make memo updatable

Update memo format and make memo updatable #3

Workflow file for this run

name: "Check Links in docs"
on:
pull_request:
types: [opened, synchronize]
jobs:
linkChecker:
runs-on: ubuntu-latest
permissions:
issues: write
actions: write
pull-requests: write
steps:
- name: Checkout the code
uses: actions/checkout@v3
- name: Link Checker
id: lychee
uses: lycheeverse/[email protected]
with:
args: --max-concurrency 30 --exclude-all-private --verbose --no-progress './**/*.md' './**/*.html'
fail: false
jobSummary: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create Issue From File
uses: peter-evans/create-issue-from-file@v4
with:
title: Link Checker Report
content-filepath: ./lychee/out.md
labels: |
report
automated issue