Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Full documentation lives at https://elastic.github.io/ai-github-actions/.
## Top recommended workflows

- Starter repo operations set: `pr-review`, `issue-triage`, `mention-in-issue`, `mention-in-pr`, `pr-actions-detective`
- Continuous improvement set: `bug-hunter`, `code-complexity-detector`, `code-duplication-detector`, `docs-patrol`, `newbie-contributor-patrol`, `small-problem-fixer`, `stale-issues-investigator`, `stale-issues-remediator`, `test-coverage-detector`, `breaking-change-detector`, `update-pr-body`
- Continuous improvement set: `bug-hunter`, `code-complexity-detector`, `code-duplication-detector`, `docs-patrol`, `newbie-contributor-patrol`, `product-manager-impersonator`, `refactor-opportunist`, `small-problem-fixer`, `stale-issues-investigator`, `stale-issues-remediator`, `test-coverage-detector`, `breaking-change-detector`, `update-pr-body`

## Quick setup script

Expand Down
2 changes: 1 addition & 1 deletion claude-workflows/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ This directory contains the composite actions for Claude Code.
Full documentation and configuration details live in the docs site:
https://elastic.github.io/ai-github-actions/workflows/claude-workflows/

Each action directory includes an `example.yml` and README for specific usage.
Use the docs site for usage and configuration details; action directories may not include local `example.yml` or README files.
2 changes: 1 addition & 1 deletion docs/workflows/gh-agent-workflows.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Each workflow directory contains an `example.yml` starter and a README for trigg
The [quick setup script](https://github.com/elastic/ai-github-actions/blob/main/scripts/quick-setup.sh) bundles two opinionated sets. The [homepage](../index.md) shows how to install the core workflows with a single copy-paste command.

- **Core (default):** `pr-review`, `issue-triage`, `mention-in-issue`, `mention-in-pr`, `pr-actions-detective`
- **Continuous improvement add-ons (`--continuous-improvement`):** `bug-hunter`, `code-complexity-detector`, `code-duplication-detector`, `docs-patrol`, `newbie-contributor-patrol`, `small-problem-fixer`, `stale-issues-investigator`, `stale-issues-remediator`, `test-coverage-detector`, `breaking-change-detector`, `update-pr-body`
- **Continuous improvement add-ons (`--continuous-improvement`):** `bug-hunter`, `code-complexity-detector`, `code-duplication-detector`, `docs-patrol`, `newbie-contributor-patrol`, `product-manager-impersonator`, `refactor-opportunist`, `small-problem-fixer`, `stale-issues-investigator`, `stale-issues-remediator`, `test-coverage-detector`, `breaking-change-detector`, `update-pr-body`

## Available workflows

Expand Down
4 changes: 2 additions & 2 deletions scripts/extract-log-errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@

Options:
--context N Lines of context before/after each match (default: 5)
--patterns FILE File with additional grep patterns (one per line)
--patterns FILE File with additional regex patterns (one per line)
--manifest FILE Path to manifest.json from fetch-workflow-logs.py
--output FILE Write JSON summary to file (default: stdout)

The script searches for common failure patterns:
- "##[error]", "Error:", "fatal:", "error:", "FAILED", "failure"
- "##[error]", "##[warning]", "error:", "fatal:", "FAILED"
- Exit code lines: "exited with exit code [^0]"
- GitHub Actions step failure markers
"""
Expand Down