From 6a49b88eec979cd8bf5f678144934d894ba11dee Mon Sep 17 00:00:00 2001 From: qte77 <93844790+qte77@users.noreply.github.com> Date: Mon, 27 Apr 2026 22:22:32 +0000 Subject: [PATCH] ci(lint): bump SHA pin and add scheduled monitor - lint-md-links.yml: bump uses ref to current qte77/.github main - lint-monitor.yml: new weekly cron + workflow_dispatch caller with notify_on_failure: true Co-Authored-By: Claude --- .github/workflows/lint-md-links.yml | 2 +- .github/workflows/lint-monitor.yml | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/lint-monitor.yml diff --git a/.github/workflows/lint-md-links.yml b/.github/workflows/lint-md-links.yml index ea47da8..324728b 100644 --- a/.github/workflows/lint-md-links.yml +++ b/.github/workflows/lint-md-links.yml @@ -13,5 +13,5 @@ permissions: jobs: lint: - uses: qte77/.github/.github/workflows/lint-md-links.yml@3b1579152e930a53b13d987a9c2344f79e3007d5 # 2026-04-27 + uses: qte77/.github/.github/workflows/lint-md-links.yml@5dfff1f73ac7241ef37b6103e04d2a8373ff68a4 # 2026-04-27 ... diff --git a/.github/workflows/lint-monitor.yml b/.github/workflows/lint-monitor.yml new file mode 100644 index 0000000..a7ade97 --- /dev/null +++ b/.github/workflows/lint-monitor.yml @@ -0,0 +1,21 @@ +--- +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 +...