Skip to content

Commit 2653fce

Browse files
authored
Add README with GitHub configurations and workflows
Added organization-wide GitHub configurations, reusable workflows, and CI/CD templates to the README.
1 parent e500847 commit 2653fce

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# chittyfoundation/.github
2+
3+
Organization-wide GitHub configurations, reusable workflows, and CI/CD templates.
4+
5+
## Reusable Workflows
6+
7+
Any repository can call our centralized CI pipeline:
8+
9+
```yaml
10+
name: CI
11+
on: [push, pull_request]
12+
jobs:
13+
ci:
14+
uses: chittyfoundation/.github/.github/workflows/reusable-ci-pipeline.yml@main
15+
with:
16+
run-ai-review: true
17+
run-governance: true
18+
secrets:
19+
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
20+
```
21+
22+
## Workflow Templates
23+
24+
Available in Actions > New workflow:
25+
- **AI Code Review** - Claude-powered PR review
26+
- - **Governance Checks** - chittycanon compliance
27+
28+
- ## Governance
29+
30+
- Reference: `chittycanon://gov/governance`

0 commit comments

Comments
 (0)