Problem
Several repositories in the Workflow ecosystem lack CI/CD pipelines entirely:
| Repository |
CI/CD Status |
| workflow |
✅ Has workflows |
| workflow-cloud |
❌ No test pipeline |
| workflow-ui |
❌ Empty .github/workflows/ directory |
| workflow-registry |
❌ No automation (no manifest validation, no schema linting) |
| ratchet |
✅ Has Makefile targets |
| workflow-plugin-bento |
✅ Has Makefile but no GHA workflows |
Required
Each repo should have at minimum:
- CI: Run tests + lint on every PR and push to main
- Release: Automated version tagging and artifact publishing
- Dependency updates: Dependabot or equivalent
Per-Repo Actions
- workflow-ui: Add GHA for
npm test, npm run lint, npm run build, auto-publish to GitHub Packages
- workflow-registry: Add GHA to validate all
manifest.json files against schema/registry-schema.json on PR
- workflow-cloud: Add GHA for
go test ./..., go vet, golangci-lint run
- workflow-plugin-bento: Add GHA for
go test -race ./..., golangci-lint run
Problem
Several repositories in the Workflow ecosystem lack CI/CD pipelines entirely:
.github/workflows/directoryRequired
Each repo should have at minimum:
Per-Repo Actions
npm test,npm run lint,npm run build, auto-publish to GitHub Packagesmanifest.jsonfiles againstschema/registry-schema.jsonon PRgo test ./...,go vet,golangci-lint rungo test -race ./...,golangci-lint run