From 28b0e7433ee3e66ad226f5f528309aacbba67a7a Mon Sep 17 00:00:00 2001 From: Hugh Hackman Date: Fri, 20 Mar 2026 02:04:35 +0000 Subject: [PATCH] fix: restore CI workflow with markdownlint config The previous CI workflow was removed, leaving the agents repo with no CI. This restores markdownlint-based CI with a config that disables rules incompatible with agent prompt files (bare URLs, inline HTML, emphasis headings). Uses ARC runners and actions/checkout@v6. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/ci.yaml | 17 +++++++++++++++++ .markdownlint.yaml | 6 ++++++ 2 files changed, 23 insertions(+) create mode 100644 .github/workflows/ci.yaml create mode 100644 .markdownlint.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..e12970b --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,17 @@ +name: CI + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + lint: + runs-on: runners-privilegedescalation + steps: + - uses: actions/checkout@v6 + - name: Lint Markdown + uses: DavidAnson/markdownlint-cli2-action@v19 + with: + globs: "**/*.md" diff --git a/.markdownlint.yaml b/.markdownlint.yaml new file mode 100644 index 0000000..2b36cc9 --- /dev/null +++ b/.markdownlint.yaml @@ -0,0 +1,6 @@ +# Markdownlint configuration for the agents repo. +# Agent prompt files intentionally use bare URLs (curl commands), +# inline HTML (template variables), and emphasis-as-headings. +MD033: false # no-inline-html +MD034: false # no-bare-urls +MD036: false # no-emphasis-as-heading