zeroclaw/.github/workflows
Argenis dcffa4d7fb
fix(ci): add missing ci-run.yml workflow (#3268)
The ci-run.yml workflow was referenced in docs/contributing/ci-map.md
and branch protection rules but never existed in the repository,
causing push-triggered CI runs to fail immediately with zero jobs
and no logs.

This adds the workflow with all documented jobs: lint, strict delta
lint, test, build (linux + macOS), docs quality, and the CI Required
Gate composite check. Triggers on both push and pull_request to master.

Fixes #2853

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 12:48:16 +00:00
..
checks-on-pr.yml feat(build): add 32-bit system support via feature gates (#3245) 2026-03-12 00:06:08 -04:00
ci-run.yml fix(ci): add missing ci-run.yml workflow (#3268) 2026-03-12 12:48:16 +00:00
cross-platform-build-manual.yml chore(deps): bump actions/download-artifact from 4 to 8 2026-03-11 04:30:08 -04:00
master-branch-flow.md chore(github): update review ownership routing (#3216) 2026-03-11 19:11:53 -04:00
README.md chore: update .gitignore, CODEOWNERS, and dependabot configuration 2026-03-07 21:05:23 -05:00
release-beta-on-push.yml fix(release): lower GNU Linux build runner baseline (#3257) 2026-03-11 23:43:14 -04:00
release-stable-manual.yml fix(release): lower GNU Linux build runner baseline (#3257) 2026-03-11 23:43:14 -04:00

Workflow Directory Layout

GitHub Actions only loads workflow entry files from:

  • .github/workflows/*.yml
  • .github/workflows/*.yaml

Subdirectories are not valid locations for workflow entry files.

Repository convention:

  1. Keep runnable workflow entry files at .github/workflows/ root.
  2. Keep cross-tooling/local CI scripts under dev/ or scripts/ci/ when used outside Actions.

Workflow behavior documentation in this directory:

  • .github/workflows/master-branch-flow.md