28b0e7433e
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 <noreply@anthropic.com>
7 lines
277 B
YAML
7 lines
277 B
YAML
# 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
|