From 7c10fa96c9f914c29e116f6d51044ad810b94f36 Mon Sep 17 00:00:00 2001 From: John Ajera <37360952+jajera@users.noreply.github.com> Date: Sat, 25 Jul 2026 15:22:07 +1200 Subject: [PATCH] ci: use separate markdown-lint and commitmsg-conform Replace hygiene PR bundle with individual reusable callers so each check is a first-class workflow. --- .github/workflows/commitmsg-conform.yml | 15 +++++++++++++++ .github/workflows/{ci.yml => markdown-lint.yml} | 7 ++++--- 2 files changed, 19 insertions(+), 3 deletions(-) create mode 100644 .github/workflows/commitmsg-conform.yml rename .github/workflows/{ci.yml => markdown-lint.yml} (51%) diff --git a/.github/workflows/commitmsg-conform.yml b/.github/workflows/commitmsg-conform.yml new file mode 100644 index 0000000..c569f51 --- /dev/null +++ b/.github/workflows/commitmsg-conform.yml @@ -0,0 +1,15 @@ +name: Commit Message Conformance + +on: + pull_request: {} + +permissions: + statuses: write + checks: write + contents: read + pull-requests: read + +jobs: + commitmsg-conform: + uses: actionsforge/actions/.github/workflows/commitmsg-conform.yml@main + diff --git a/.github/workflows/ci.yml b/.github/workflows/markdown-lint.yml similarity index 51% rename from .github/workflows/ci.yml rename to .github/workflows/markdown-lint.yml index 2698dc4..35c960c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/markdown-lint.yml @@ -1,4 +1,4 @@ -name: CI +name: Markdown Lint on: pull_request: {} @@ -10,5 +10,6 @@ permissions: pull-requests: read jobs: - pr-checks: - uses: actionsforge/actions/.github/workflows/astro-docs-pr-checks.yml@main + markdown-lint: + uses: actionsforge/actions/.github/workflows/markdown-lint.yml@main +