Skip to content

Reorganize repo

Reorganize repo #5

name: Check README Links
on:
push:
branches:
- main
workflow_dispatch:
jobs:
check-links:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check Links 🔍
id: lychee
uses: lycheeverse/lychee-action@v1.9.3
with:
args: --verbose --no-progress README.md
fail: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create Issue From File
if: steps.lychee.outputs.exit_code != 0
uses: peter-evans/create-issue-from-file@v4
with:
title: Link Checker Report 🔗
content-filepath: ./lychee/out.md
labels: report, automated issue