You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pkg/parser/schemas/main_workflow_schema.json
+31Lines changed: 31 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -8507,6 +8507,21 @@
8507
8507
},
8508
8508
"description": "Glob patterns for allowed source branch names (pull request head ref). The PR's branch must match at least one pattern."
8509
8509
},
8510
+
"target": {
8511
+
"type": "string",
8512
+
"description": "Target for merging: 'triggering' (default, current PR), or '*' (any PR with pull_request_number field)"
8513
+
},
8514
+
"target-repo": {
8515
+
"type": "string",
8516
+
"description": "Target repository in format 'owner/repo' for cross-repository operations. Takes precedence over trial target repo settings."
8517
+
},
8518
+
"allowed-repos": {
8519
+
"type": "array",
8520
+
"items": {
8521
+
"type": "string"
8522
+
},
8523
+
"description": "List of additional repositories in format 'owner/repo' that pull requests can be merged in. The target repository is always implicitly allowed."
8524
+
},
8510
8525
"github-token": {
8511
8526
"$ref": "#/$defs/github_token",
8512
8527
"description": "GitHub token to use for this specific output type. Overrides global github-token if specified."
@@ -8516,6 +8531,22 @@
8516
8531
"description": "If true, evaluate merge gates and emit preview results without executing the merge API call.",
8517
8532
"examples": [true, false]
8518
8533
},
8534
+
"samples": {
8535
+
"description": "Internal hidden feature. Optional list of declarative sample payloads that exercise this safe-output handler. Used by the hidden `gh aw compile --use-samples` flag to replace the agentic step with a deterministic replay through the safe-outputs MCP server. Each entry should conform to the corresponding MCP tool inputSchema; recognized sidecar keys (currently `patch` for create-pull-request and push-to-pull-request-branch) are stripped before schema validation and consumed by the replay driver.",
8536
+
"oneOf": [
8537
+
{
8538
+
"type": "array",
8539
+
"items": {
8540
+
"type": "object",
8541
+
"additionalProperties": true
8542
+
}
8543
+
},
8544
+
{
8545
+
"type": "object",
8546
+
"additionalProperties": true
8547
+
}
8548
+
]
8549
+
},
8519
8550
"required-title-prefix": {
8520
8551
"type": "string",
8521
8552
"description": "The target item's title must start with this prefix for this operation to proceed"
0 commit comments