Conversation
Document three features present in code and schema but missing from the agent instructions file: - on.labels: filter label-triggered events (pull_request_target with types: [labeled]) to fire only when the triggering label matches; unmatched events show as Skipped rather than Failed - tools.comment-memory: file-based persistent memory in managed issue/PR comments, with pre-agent extraction and post-execution sync - safe-outputs.create-pull-request.allowed-base-branches: allow agents to override the base branch per-run within configured glob patterns; also accepts GitHub Actions expressions for workflow_call reuse Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.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.
Instructions Update - Sync Missing Features
This PR adds documentation for three features present in code and schema but missing from the agent instructions file.
Changes Made
on.labels:— New field to filter label-triggered events (pull_request_targetwithtypes: [labeled]). When configured, unmatched events show as Skipped (⊘) instead of Failed (❌), eliminating CI noise.tools.comment-memory:— File-based persistent memory in managed issue/PR comments. Pre-agent setup extracts comment content to/tmp/gh-aw/comment-memory/*.md; agent edits files directly; processor upserts the managed comment after execution. Added full configuration reference and how-it-works description.safe-outputs.create-pull-request.allowed-base-branches:— Allows agents to override the PR base branch per-run within configured glob patterns. Also accepts GitHub Actions expressions forworkflow_callreuse.Documentation Commits Reviewed
Validation
comment_memory.go,compiler_types.go,main_workflow_schema.json, ADR-28737, ADR-27479, ADR-29212)