From 5eb78d490ee906c0ceb42f568f98967e9f151670 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 4 Jun 2026 14:20:48 +0000 Subject: [PATCH] Fix text drift for issue #1222 Align workflow docs and extract-log-errors help text with current behavior. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- README.md | 2 +- claude-workflows/README.md | 2 +- docs/workflows/gh-agent-workflows.md | 2 +- scripts/extract-log-errors.py | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index bb2ed07a..c5b8d8a1 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/claude-workflows/README.md b/claude-workflows/README.md index 87553d19..be8a007e 100644 --- a/claude-workflows/README.md +++ b/claude-workflows/README.md @@ -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. diff --git a/docs/workflows/gh-agent-workflows.md b/docs/workflows/gh-agent-workflows.md index 69bf1fe5..bb8bb275 100644 --- a/docs/workflows/gh-agent-workflows.md +++ b/docs/workflows/gh-agent-workflows.md @@ -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 diff --git a/scripts/extract-log-errors.py b/scripts/extract-log-errors.py index f995d57b..f151ead1 100644 --- a/scripts/extract-log-errors.py +++ b/scripts/extract-log-errors.py @@ -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 """