zeroclaw/.github/workflows
Will Sarg 43c6f64080
ci(homebrew): fix bot fork auth clone path (#1329)
* ci(homebrew): authenticate git ops via header-safe token flow

* ci(homebrew): fix patch step indentation in workflow
2026-02-21 21:45:33 -05:00
..
scripts ci(intake): warn and retarget non-promotion PRs from main to dev (#1319) 2026-02-21 17:45:50 -05:00
ci-build-fast.yml ci(build-fast): align toolchain with stable release build 2026-02-21 20:49:17 -05:00
ci-run.yml ci(workflow): adopt main/dev split with dev->main promotion gate (#1283) 2026-02-21 13:39:07 -05:00
feature-matrix.yml perf(ci): reduce GitHub Actions costs ~60-65% across all workflows 2026-02-18 21:14:47 -08:00
main-branch-flow.md ci(release): add bot-owned Homebrew publish workflow (#1323) 2026-02-21 20:18:08 -05:00
main-promotion-gate.yml ci(policy): restrict main PR authors and target bot PRs to dev (#1310) 2026-02-21 17:00:45 -05:00
pr-auto-response.yml ci(workflow): adopt main/dev split with dev->main promotion gate (#1283) 2026-02-21 13:39:07 -05:00
pr-check-stale.yml fix(ci): restore broken YAML structure in 3 workflows, revert aggressive STALE_HOURS 2026-02-18 21:26:14 -08:00
pr-check-status.yml fix(ci): restore broken YAML structure in 3 workflows, revert aggressive STALE_HOURS 2026-02-18 21:26:14 -08:00
pr-intake-checks.yml ci(workflow): adopt main/dev split with dev->main promotion gate (#1283) 2026-02-21 13:39:07 -05:00
pr-label-policy-check.yml chore(ci): align workflow names with file naming style (#723) 2026-02-17 19:55:05 -05:00
pr-labeler.yml ci(workflow): adopt main/dev split with dev->main promotion gate (#1283) 2026-02-21 13:39:07 -05:00
pub-docker-img.yml ci(workflow): adopt main/dev split with dev->main promotion gate (#1283) 2026-02-21 13:39:07 -05:00
pub-homebrew-core.yml ci(homebrew): fix bot fork auth clone path (#1329) 2026-02-21 21:45:33 -05:00
pub-release.yml ci(release): add bot-owned Homebrew publish workflow (#1323) 2026-02-21 20:18:08 -05:00
README.md ci(policy): restrict root license file edits to owners (#1273) 2026-02-21 11:39:50 -05:00
sec-audit.yml ci(workflow): adopt main/dev split with dev->main promotion gate (#1283) 2026-02-21 13:39:07 -05:00
sec-codeql.yml chore(deps): bump github/codeql-action in the actions-all group 2026-02-21 18:44:44 +00:00
sec-vorpal-reviewdog.yml ci(policy): restrict root license file edits to owners (#1273) 2026-02-21 11:39:50 -05:00
sync-contributors.yml perf(ci): reduce GitHub Actions costs ~60-65% across all workflows 2026-02-18 21:14:47 -08:00
test-benchmarks.yml perf(ci): reduce GitHub Actions costs ~60-65% across all workflows 2026-02-18 21:14:47 -08:00
test-e2e.yml ci(workflow): adopt main/dev split with dev->main promotion gate (#1283) 2026-02-21 13:39:07 -05:00
test-fuzz.yml chore(ci): align workflow names with file naming style (#723) 2026-02-17 19:55:05 -05:00
test-rust-build.yml chore(ci): align workflow names with file naming style (#723) 2026-02-17 19:55:05 -05:00
workflow-sanity.yml ci(workflows): split label policy checks from workflow sanity (#559) 2026-02-17 11:26:54 -05: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 workflow-only helper scripts under .github/workflows/scripts/.
  3. Keep cross-tooling/local CI scripts under scripts/ci/ when they are used outside Actions.

Workflow behavior documentation in this directory:

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

Current workflow helper scripts:

  • .github/workflows/scripts/ci_workflow_owner_approval.js
  • .github/workflows/scripts/ci_license_file_owner_guard.js
  • .github/workflows/scripts/lint_feedback.js
  • .github/workflows/scripts/pr_auto_response_contributor_tier.js
  • .github/workflows/scripts/pr_auto_response_labeled_routes.js
  • .github/workflows/scripts/pr_check_status_nudge.js
  • .github/workflows/scripts/pr_intake_checks.js
  • .github/workflows/scripts/pr_labeler.js
  • .github/workflows/scripts/test_benchmarks_pr_comment.js