From 0cbf75bc76f37fe962274a4966ffb84cc9d68b52 Mon Sep 17 00:00:00 2001 From: qte77 <93844790+qte77@users.noreply.github.com> Date: Mon, 27 Apr 2026 22:31:16 +0000 Subject: [PATCH] revert(ci): remove lint-monitor scaffold Mass-rollout violated KISS (file added to repos without idle/docs-heavy profile) and DRY (30x duplicated caller scaffolding for marginal value). Opt-in via qte77/.github notify_on_failure input remains available where actually needed. Co-Authored-By: Claude --- .github/workflows/lint-monitor.yml | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 .github/workflows/lint-monitor.yml diff --git a/.github/workflows/lint-monitor.yml b/.github/workflows/lint-monitor.yml deleted file mode 100644 index a7ade97..0000000 --- a/.github/workflows/lint-monitor.yml +++ /dev/null @@ -1,21 +0,0 @@ ---- -name: Lint Monitor - -on: - schedule: - - cron: "0 0 * * 0" # weekly Sunday midnight UTC - workflow_dispatch: - -permissions: - contents: read - issues: write - -jobs: - monitor: - uses: qte77/.github/.github/workflows/lint-md-links.yml@5dfff1f73ac7241ef37b6103e04d2a8373ff68a4 # 2026-04-27 - with: - notify_on_failure: true - permissions: - contents: read - issues: write -...