From f2ceddc1a345bb0c27da4c237a0bc3359ef44a92 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 14 Nov 2025 17:21:35 +0000 Subject: [PATCH] docs: add Examples section to README with links to workflow examples - Added new "Examples" section highlighting the examples/ folder - Included descriptions for all example workflow files - Provides clear guidance on how users can utilize the examples - Positioned strategically after Solutions & Use Cases section --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index d93366f..97cb510 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,21 @@ Looking for specific automation patterns? Check our **[Solutions Guide](./docs/s Each solution includes complete working examples, configuration details, and expected outcomes. +## 📁 Examples + +The [`examples/`](./examples/) folder contains ready-to-use GitHub Actions workflow files that demonstrate various automation patterns: + +- **[`pr-review-comprehensive.yml`](./examples/pr-review-comprehensive.yml)** - Complete PR review automation with progress tracking +- **[`pr-review-filtered-paths.yml`](./examples/pr-review-filtered-paths.yml)** - Trigger reviews only for specific file paths +- **[`pr-review-filtered-authors.yml`](./examples/pr-review-filtered-authors.yml)** - Special handling for external contributors +- **[`issue-triage.yml`](./examples/issue-triage.yml)** - Automatic issue categorization and labeling +- **[`issue-deduplication.yml`](./examples/issue-deduplication.yml)** - Detect and handle duplicate issues +- **[`ci-failure-auto-fix.yml`](./examples/ci-failure-auto-fix.yml)** - Automatic CI failure analysis and fixes +- **[`manual-code-analysis.yml`](./examples/manual-code-analysis.yml)** - On-demand code analysis workflows +- **[`claude.yml`](./examples/claude.yml)** - Basic setup for @claude mentions + +Copy these examples directly into your `.github/workflows/` directory and customize them for your specific needs. Each example includes detailed comments explaining the configuration and expected behavior. + ## Documentation - **[Solutions Guide](./docs/solutions.md)** - **🎯 Ready-to-use automation patterns**