Daily Repo Goal Achiever: Fix docs consistency and add Issue Arborist workflow#192
Open
github-actions[bot] wants to merge 1 commit intomainfrom
Open
Daily Repo Goal Achiever: Fix docs consistency and add Issue Arborist workflow#192github-actions[bot] wants to merge 1 commit intomainfrom
github-actions[bot] wants to merge 1 commit intomainfrom
Conversation
Phase 1: Fix docs consistency issues - Add missing README backlink to docs/daily-malicious-code-scan.md - Add missing README backlink to docs/duplicate-code-detector.md - Add missing README backlink and fix format of docs/link-checker.md - Add missing README backlink to docs/plan.md Phase 2: Add Issue Arborist workflow - Add workflows/issue-arborist.md (generalized from gh-aw) - Add docs/issue-arborist.md documentation page - Add Issue Management Workflows section to README.md with entry Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR addresses Phase 1 (consistency fixes) and Phase 2 (new workflow) from the Daily Repo Goal Achiever task.
Phase 1: Docs Consistency Fixes
Four docs pages were missing the standard README backlink that appears on all other docs pages:
docs/daily-malicious-code-scan.md— added> For an overview of all available workflows, see the [main README](../README.md).docs/duplicate-code-detector.md— added backlinkdocs/plan.md— added backlinkdocs/link-checker.md— replaced non-standard**Workflow file:**line with the standard backlink and an intro paragraphPhase 2: Issue Arborist Workflow
Source: issue-arborist.md in gh-aw
Stats: 77 daily discussion reports published, 18 parent issues created to group related issue clusters
Why it's valuable: Issue trackers grow organically and become hard to navigate. The Issue Arborist automatically identifies related issues and links them as parent-child sub-issues. When it finds clusters of 5+ related orphan issues, it creates a new parent issue to group them. It's conservative — only linking when relationships are clear — so false positives are rare.
Generalization: The original workflow was already fairly project-agnostic. The main changes made for this generalization:
shared/jqschema.mdimport (a gh-aw internal utility) and its usage in the pre-processing step/tmp/gh-aw/issues-data/to/tmp/issues-data/scratchpad/metrics-glossary.md(internal gh-aw tracking file)The workflow uses only standard GitHub CLI tools (
gh issue list) and JSON processing (jq), making it applicable to any repository in any programming language.Files Added
workflows/issue-arborist.md— workflow definitiondocs/issue-arborist.md— documentation page