[instructions] Sync github-agentic-workflows.md with v0.68.3#27019
Merged
[instructions] Sync github-agentic-workflows.md with v0.68.3#27019
Conversation
Fix inaccurate description of env: merge behavior in shared imports: the previous wording implied last-import-wins semantics, but the implementation raises a compilation error when two different imports define the same env variable. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This was referenced Apr 18, 2026
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 - Synchronized with v0.68.3
This PR updates
github-agentic-workflows.mdbased on the safe-outputs code audit performed against v0.68.3.Changes Made
env:merge behavior description in Imports Field section: The previous wording ("last import wins per key; main workflow takes precedence") implied lenient last-write-wins semantics. The actual implementation inpkg/parser/import_field_extractor.goraises a compilation error when two distinct imported files define the sameenv:key — only the main workflow may override an imported env variable. Updated the description to accurately reflect this behavior.Documentation Commits Reviewed
No user-facing documentation commits since v0.68.3 (2026-04-14). Only
84bb5c6(spec enforcement for internal packages) was found.Safe-Outputs Code vs Instructions Audit
All 40+ safe-output operation types defined in
SafeOutputsConfig(compiler_types.go) were verified against the instructions — all are documented. Theenv:merge behavior was the sole discrepancy found.Validation
pkg/parser/import_field_extractor.go)