Daily Repo Goal Achiever: Fix docs backlinks and add Sub-Issue Closer workflow#197
Open
github-actions[bot] wants to merge 3 commits intomainfrom
Open
Conversation
… workflow Phase 1: Fix 4 docs pages missing the standard README backlink - docs/daily-malicious-code-scan.md: Add README backlink - docs/duplicate-code-detector.md: Add README backlink - docs/link-checker.md: Add README backlink - docs/plan.md: Add README backlink Phase 2: Add Sub-Issue Closer workflow - workflows/sub-issue-closer.md: Adapted from Peli's Agent Factory - docs/sub-issue-closer.md: Documentation page - README.md: Add entry under Maintainer section Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
Author
|
Pull request created: #197 |
…-24-92330f53aee3b0de
…-24-92330f53aee3b0de
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 check) and Phase 2 (workflow discovery) from the Daily Repo Goal Achiever task.
Phase 1: Docs Consistency Fix
Four docs pages were missing the standard README backlink (
> For an overview of all available workflows, see the [main README](../README.md).) that all other docs pages include:docs/daily-malicious-code-scan.mddocs/duplicate-code-detector.mddocs/link-checker.mddocs/plan.mdAll four have been updated to include the standard backlink after the h1 heading.
Phase 2: New Workflow — Sub-Issue Closer
Source:
sub-issue-closer.mdin Peli's Agent FactoryMerge rate: Described as an "orchestrator workflow" in the blog — it closes issues rather than proposing PRs, so no traditional PR merge rate applies.
Why it's valuable: Teams using GitHub's sub-issues feature for hierarchical issue tracking (epics → features → tasks) need parent issues to be closed when all their work is done. This workflow automates that cleanup, preventing stale open issues and keeping the tracker accurate. It works recursively, cascading closures up multi-level hierarchies.
Generalization: The original workflow is already fully general — no language or framework specifics. Only minor adaptation was needed to remove gh-aw internal references in the agent instructions.
Proposed name: Sub-Issue Closer
Files Added/Changed
workflows/sub-issue-closer.md— The workflow sourcedocs/sub-issue-closer.md— Documentation page following the standard docs styleREADME.md— Added entry under the Maintainer section