From 0d0af32928f83dc24b8b951cab078ef6773bd7e1 Mon Sep 17 00:00:00 2001 From: qte77 <93844790+qte77@users.noreply.github.com> Date: Mon, 27 Apr 2026 20:38:52 +0000 Subject: [PATCH] ci(lint): adopt centralized markdown + link checking from qte77/.github Use the reusable workflow at qte77/.github/.github/workflows/lint-md-links.yml. SHA-pinned to .github main of 2026-04-27 per qte77 internal convention. Configs fall back to qte77/.github at runtime; override by committing .markdownlint.jsonc or lychee.toml at repo root. Co-Authored-By: Claude --- .github/workflows/lint-md-links.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/lint-md-links.yml diff --git a/.github/workflows/lint-md-links.yml b/.github/workflows/lint-md-links.yml new file mode 100644 index 0000000..ea47da8 --- /dev/null +++ b/.github/workflows/lint-md-links.yml @@ -0,0 +1,17 @@ +--- +name: Lint MD and Links + +on: + push: + branches: [main] + pull_request: + branches: [main] + workflow_dispatch: + +permissions: + contents: read + +jobs: + lint: + uses: qte77/.github/.github/workflows/lint-md-links.yml@3b1579152e930a53b13d987a9c2344f79e3007d5 # 2026-04-27 +...