[instructions] Sync github-agentic-workflows.md with v0.68.1#26012
Merged
[instructions] Sync github-agentic-workflows.md with v0.68.1#26012
Conversation
- Replace non-existent max-concurrency with correct engine fields: max-continuations (autopilot mode) and concurrency (job-level) - Fix engine.bare to cover all four engines (copilot/claude/codex/gemini) and remove incorrect "Unsupported engines emit a compiler warning" note - Add user-agent and config fields (codex-only engine options) - Remove error_patterns which is not in the engine schema or Go struct Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Contributor
Author
|
Hey This PR looks ready for maintainer review. ✅
|
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.1
This PR updates
github-agentic-workflows.mdbased on the code-vs-instructions audit for v0.68.1. There were no documentation-only commits since the release that affected agent-facing content, but the code audit found several inaccuracies in the engine configuration section.Changes Made
max-concurrency: This field never existed inEngineConfigor the JSON schema. Replaced withconcurrency(job-level concurrency group, string or object) andmax-continuations(copilot autopilot mode, integer).engine.bare: The description said "Unsupported engines emit a compiler warning" — all four engines now supportbare(copilot:--no-custom-instructions, claude:--bare, codex:--no-system-prompt, gemini:GEMINI_SYSTEM_MD=/dev/null). Updated the comment to list the actual flag each engine uses.user-agentandconfig: Two codex-only engine fields present in the schema but missing from the instructions.error_patterns: This field is not present inEngineConfig, the Go struct, or the JSON schema. Was a documentation artifact.max-concurrencyfrom the list of fields with sensible defaults.Documentation Commits Reviewed
d1c210eAdd exception.type to OTel exception span events; sanitize event attributes — modifiesactions/setup/js/send_otlp_span.cjsonly, not agent-facing documentation.Validation
pkg/workflow/engine.go(EngineConfigstruct),pkg/parser/schemas/main_workflow_schema.json, andpkg/workflow/compiler_types.goerror_patterns,max-concurrency)