From ac829dfb719b11f0ca25132db547fa319d12aaab Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 3 Jun 2026 14:56:22 +0000 Subject: [PATCH] Fix detector wording and workflow trigger typo Clarify docs so auto-fixes are described as optional detector-fixer chaining, and correct the monitor workflow name in trigger-ci-workflows.sh to match the real trigger workflow. Closes #1215 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- docs/workflows/gh-agent-workflows/bugs.md | 2 +- docs/workflows/gh-agent-workflows/code-duplication.md | 2 +- docs/workflows/gh-agent-workflows/newbie-contributor.md | 2 +- docs/workflows/gh-agent-workflows/test-coverage.md | 2 +- docs/workflows/gh-agent-workflows/text-quality.md | 2 +- scripts/trigger-ci-workflows.sh | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/workflows/gh-agent-workflows/bugs.md b/docs/workflows/gh-agent-workflows/bugs.md index bb6b91eb..1c93c2e5 100644 --- a/docs/workflows/gh-agent-workflows/bugs.md +++ b/docs/workflows/gh-agent-workflows/bugs.md @@ -1,6 +1,6 @@ # Bug Hunting -Find reproducible bugs and automatically fix them. +Find reproducible bugs, with optional automated fixes via detector-fixer chaining. **Bug Hunter** finds user-impacting bugs by reviewing recent git history, writing minimal reproduction scripts, and filing a report issue only when the bug is concretely confirmed. Chain it to [Create PR from Issue](../detector-fixer-chaining.md) for a fully autonomous detect-and-fix loop. Most runs end with `noop`. diff --git a/docs/workflows/gh-agent-workflows/code-duplication.md b/docs/workflows/gh-agent-workflows/code-duplication.md index 4e96573d..8e9c2237 100644 --- a/docs/workflows/gh-agent-workflows/code-duplication.md +++ b/docs/workflows/gh-agent-workflows/code-duplication.md @@ -1,6 +1,6 @@ # Code Duplication -Find duplicate and misplaced functions, then consolidate them automatically. +Find duplicate and misplaced functions, with optional automated consolidation via detector-fixer chaining. **Code Duplication Detector** scans source files to find semantically related functions that live in different files, duplicate implementations of the same logic, and functions that belong in a different module. Chain it to [Create PR from Issue](../detector-fixer-chaining.md) for a fully autonomous detect-and-fix loop. Most runs end with `noop`. diff --git a/docs/workflows/gh-agent-workflows/newbie-contributor.md b/docs/workflows/gh-agent-workflows/newbie-contributor.md index ec23ed16..699493f2 100644 --- a/docs/workflows/gh-agent-workflows/newbie-contributor.md +++ b/docs/workflows/gh-agent-workflows/newbie-contributor.md @@ -1,6 +1,6 @@ # Newbie Contributor -Review documentation from a new contributor's perspective and automatically fix gaps. +Review documentation from a new contributor's perspective, with optional fixes via detector-fixer chaining. **Newbie Contributor Patrol** reads all contributor-facing documentation as if it were a new contributor's first encounter with the project — following getting-started paths, checking for missing prerequisites, and flagging blocking gaps. An **Elastic-specific** variant also cross-references published Elastic documentation. Chain it to [Create PR from Issue](../detector-fixer-chaining.md) for a fully autonomous detect-and-fix loop. Most runs end with `noop`. diff --git a/docs/workflows/gh-agent-workflows/test-coverage.md b/docs/workflows/gh-agent-workflows/test-coverage.md index 48c8185b..74e2b6dd 100644 --- a/docs/workflows/gh-agent-workflows/test-coverage.md +++ b/docs/workflows/gh-agent-workflows/test-coverage.md @@ -1,6 +1,6 @@ # Test Coverage -Find under-tested code and automatically add focused tests. +Find under-tested code, with optional focused test additions via detector-fixer chaining. **Test Coverage Detector** identifies code paths with no or minimal test coverage by running coverage tools (when available) and analyzing recent changes for missing tests. Chain it to [Create PR from Issue](../detector-fixer-chaining.md) for a fully autonomous detect-and-fix loop. Most runs end with `noop`. diff --git a/docs/workflows/gh-agent-workflows/text-quality.md b/docs/workflows/gh-agent-workflows/text-quality.md index 4dc5b0d4..8c9202a5 100644 --- a/docs/workflows/gh-agent-workflows/text-quality.md +++ b/docs/workflows/gh-agent-workflows/text-quality.md @@ -1,6 +1,6 @@ # Text Quality -Find text issues and automatically fix them. +Find text issues, with optional auto-fixes via detector-fixer chaining. **Text Auditor** scans user-facing text sources — CLI output, error messages, documentation, and help text — for typos, grammatical errors, unclear messages, and inconsistent terminology. You can [chain it to Create PR from Issue](../detector-fixer-chaining.md) for a fully autonomous detect-and-fix loop. Most runs end with `noop`. diff --git a/scripts/trigger-ci-workflows.sh b/scripts/trigger-ci-workflows.sh index d174be92..28d37d34 100755 --- a/scripts/trigger-ci-workflows.sh +++ b/scripts/trigger-ci-workflows.sh @@ -38,7 +38,7 @@ FIXERS=( MONITORS=( "Trigger Agent Suggestions" - "Trigger Estc Downstream Health" + "Trigger Internal Downstream Health" "Trigger Product Manager Impersonator" "Trigger Project Summary" )