Update memo format and make memo updatable #3
Workflow file for this run
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
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 |