Skip to content

feat(v1.2.0): README badge fix, add label-sync.yml and release.yml #26

feat(v1.2.0): README badge fix, add label-sync.yml and release.yml

feat(v1.2.0): README badge fix, add label-sync.yml and release.yml #26

Workflow file for this run

name: Check Links
on:
schedule:
- cron: "0 0 1 * *"
push:
branches: [main]
paths:
- "**.md"
- "**.mdc"
workflow_dispatch:
permissions:
issues: write
jobs:
linkcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Check links
uses: lycheeverse/lychee-action@v2
with:
fail: false
args: >
--exclude "https://hub.docker.com"
--exclude "localhost"
--exclude "127.0.0.1"
--exclude "example.com"
"**/*.md"
"**/*.mdc"