From c4d75b0fcaf265001dc4805116630ffc944a95ef Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 Apr 2026 10:58:20 +0000 Subject: [PATCH] Sync github-agentic-workflows.md with v0.68.3 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 --- .github/aw/github-agentic-workflows.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/aw/github-agentic-workflows.md b/.github/aw/github-agentic-workflows.md index bb8f010441e..e7e84b49c00 100644 --- a/.github/aw/github-agentic-workflows.md +++ b/.github/aw/github-agentic-workflows.md @@ -2143,7 +2143,7 @@ The following frontmatter fields in imported files are merged into the importing - `tools:` - Merged with the importing workflow's tools - `safe-outputs:` - Merged with safe-output configuration -- `env:` - Environment variables merged (last import wins per key; main workflow takes precedence) +- `env:` - Environment variables merged; conflicts between two imports defining the same key are compilation errors (remove the duplicate or move it to the main workflow to override) - `checkout:` - Checkout configurations appended (main workflow's checkouts take precedence) - `github-app:` - Top-level GitHub App credentials (first-wins across imports) - `on.github-app:` - Activation GitHub App credentials (first-wins across imports)