docs: complete examples catalog with GitHub Actions and workflows

- Add GitHub Actions section to main README Production-Ready Examples
- Update examples/README.md with github-actions/ and workflows/ folders
- Add complete templates index for CI/CD workflows
- Bump version to 2.8 across all documentation files

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Florian BRUNIAUX 2026-01-11 19:10:47 +01:00
parent 2a70921c5f
commit 2714159acb
5 changed files with 29 additions and 5 deletions

View file

@ -174,7 +174,15 @@ Copy-paste templates from [`examples/`](./examples/) for immediate use:
| [notification.sh](./examples/hooks/bash/notification.sh) | Notification | macOS sound alerts |
| [auto-format.sh](./examples/hooks/bash/auto-format.sh) | PostToolUse | Auto-format with Prettier |
**[See Complete Catalog](./examples/README.md)** — Includes agents, skills, config templates
### GitHub Actions (CI/CD)
| Workflow | Trigger | Purpose |
|----------|---------|---------|
| [claude-pr-auto-review.yml](./examples/github-actions/claude-pr-auto-review.yml) | PR open | Auto code review with inline comments |
| [claude-security-review.yml](./examples/github-actions/claude-security-review.yml) | PR open | Security scan (OWASP Top 10) |
| [claude-issue-triage.yml](./examples/github-actions/claude-issue-triage.yml) | Issue opened | Auto-triage with labels |
**[See Complete Catalog](./examples/README.md)** — Includes agents, skills, memory templates, config files, workflows
---

View file

@ -6,7 +6,7 @@
**Written with**: Claude (Anthropic)
**Version**: 2.1 | **Last Updated**: January 2026
**Version**: 2.8 | **Last Updated**: January 2026
---
@ -364,4 +364,4 @@ where.exe claude; claude doctor; claude mcp list
**Author**: Florian BRUNIAUX | [@Méthode Aristote](https://methode-aristote.fr) | Written with Claude
*Last updated: January 2026 | Version 2.0*
*Last updated: January 2026 | Version 2.8*

View file

@ -528,4 +528,4 @@ Here's an example of what the audit report looks like:
---
*Last updated: January 2026 | Version 2.2 - Optimized with bash scanning*
*Last updated: January 2026 | Version 2.8 - Optimized with bash scanning*

View file

@ -8873,4 +8873,4 @@ Thumbs.db
**Contributions**: Issues and PRs welcome.
**Last updated**: January 2026 | **Version**: 2.6
**Last updated**: January 2026 | **Version**: 2.8

View file

@ -13,6 +13,8 @@ Ready-to-use templates for Claude Code configuration.
| [`config/`](./config/) | Configuration file templates |
| [`memory/`](./memory/) | CLAUDE.md memory file templates |
| [`scripts/`](./scripts/) | Utility scripts for setup and diagnostics |
| [`github-actions/`](./github-actions/) | CI/CD workflows for GitHub Actions |
| [`workflows/`](./workflows/) | Advanced development workflow guides |
## Quick Start
@ -92,6 +94,20 @@ Ready-to-use templates for Claude Code configuration.
> **Usage**: `./audit-scan.sh` for human output, `./audit-scan.sh --json` for JSON output
### GitHub Actions
| File | Trigger | Purpose |
|------|---------|---------|
| [claude-pr-auto-review.yml](./github-actions/claude-pr-auto-review.yml) | PR open/update | Auto code review with inline comments |
| [claude-security-review.yml](./github-actions/claude-security-review.yml) | PR open/update | Security-focused scan (OWASP) |
| [claude-issue-triage.yml](./github-actions/claude-issue-triage.yml) | Issue opened | Auto-triage with labels and severity |
> **See [github-actions/README.md](./github-actions/README.md) for setup instructions and customization**
### Workflows
| File | Purpose |
|------|---------|
| [database-branch-setup.md](./workflows/database-branch-setup.md) | Isolated feature dev with database branches (Neon/PlanetScale) |
---
*See the [main guide](../english-ultimate-claude-code-guide.md) for detailed explanations.*