Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
43 lines
1.0 KiB
Markdown
43 lines
1.0 KiB
Markdown
@../AGENTS.md
|
|
|
|
## .github Quick Reference
|
|
|
|
This folder contains n8n's GitHub Actions infrastructure.
|
|
|
|
### Key Files
|
|
|
|
| File/Folder | Purpose |
|
|
|-------------|---------|
|
|
| `WORKFLOWS.md` | Complete CI/CD documentation |
|
|
| `workflows/` | GitHub Actions workflows |
|
|
| `actions/` | Reusable composite actions |
|
|
| `scripts/` | Release & Docker automation |
|
|
| `CODEOWNERS` | Team review ownership |
|
|
|
|
### Workflow Naming
|
|
|
|
| Prefix | Purpose |
|
|
|--------|---------|
|
|
| `test-` | Testing (unit, E2E, visual) |
|
|
| `ci-` | Continuous integration |
|
|
| `util-` | Utilities (notifications) |
|
|
| `build-` | Build processes |
|
|
| `release-` | Release automation |
|
|
| `sec-` | Security scanning |
|
|
|
|
Reusable workflows: add `-reusable` or `-callable` suffix.
|
|
|
|
### Common Tasks
|
|
|
|
**Add workflow:** Create in `workflows/`, document in `WORKFLOWS.md`
|
|
|
|
**Add script:** Create `.mjs` in `scripts/`, document in `WORKFLOWS.md`
|
|
|
|
### Reference
|
|
|
|
See `WORKFLOWS.md` for:
|
|
- Architecture diagrams
|
|
- Workflow call graph
|
|
- Scheduled jobs & triggers
|
|
- Runners & secrets
|