-
Notifications
You must be signed in to change notification settings - Fork 1
286 lines (275 loc) · 11.9 KB
/
Copy pathrun-agent-task.yml
File metadata and controls
286 lines (275 loc) · 11.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
name: Run Agent Task (reusable)
'on':
workflow_call:
inputs:
external_package_source:
description: "JSON descriptor for exactly one standalone .agent.json file: repository, immutable revision, file path, and sha256-bytes-v1 digest."
type: string
required: true
workload_id:
description: Stable workload identifier for this run.
type: string
default: agent-task
workload_label:
description: Human-readable workload label for logs and review artifacts.
type: string
default: Run Agent Task
component_id:
description: Caller-owned component identifier for traceability.
type: string
default: agent-task
target_repo:
description: Target repository in OWNER/REPO format.
type: string
required: true
prompt:
description: Task instruction supplied to the selected agent bundle.
type: string
required: true
writable_paths:
description: Comma-separated repository paths the agent may edit.
type: string
default: ""
provider:
description: Model provider id selected by the caller.
type: string
default: openai
model:
description: Model id selected by the caller.
type: string
default: gpt-5.5
runner_workspace:
description: JSON runner-owned workspace publication request.
type: string
default: '{}'
validation_dependencies:
description: Optional validation dependency install command.
type: string
default: ""
verification_commands:
description: JSON array of verification commands to run after agent changes.
type: string
default: '[]'
drift_checks:
description: JSON array of drift checks for generated outputs.
type: string
default: '[]'
success_requires_pr:
description: Whether success requires a published pull request.
type: boolean
default: false
access_token_repos:
description: Comma-separated repositories for access-token scoping.
type: string
default: ""
allowed_repos:
description: JSON array of repositories the run may access.
type: string
default: '[]'
max_turns:
description: Maximum agent turns for the run.
type: number
default: 12
time_budget_ms:
description: Run time budget in milliseconds.
type: number
default: 600000
output_projections:
description: JSON object mapping workflow output names to result paths.
type: string
default: '{}'
transcript_artifact_name:
description: Name for the transcript artifact.
type: string
default: agent-task-transcript
replay_bundle_artifact_name:
description: Optional name for the replay bundle artifact.
type: string
default: ""
expected_artifacts:
description: JSON array of expected artifact names.
type: string
default: '[]'
artifact_declarations:
description: JSON array of typed artifact declarations.
type: string
default: '[]'
callback_data:
description: JSON object passed through to the native task.
type: string
default: '{}'
run_agent:
description: When false, validate and report a skipped run.
type: boolean
default: true
dry_run:
description: Validate the task request without starting a live agent run.
type: boolean
default: false
secrets:
OPENAI_API_KEY:
required: false
MODEL_PROVIDER_SECRET_1:
required: false
MODEL_PROVIDER_SECRET_2:
required: false
MODEL_PROVIDER_SECRET_3:
required: false
MODEL_PROVIDER_SECRET_4:
required: false
MODEL_PROVIDER_SECRET_5:
required: false
ACCESS_TOKEN:
description: Optional explicit GitHub token for an authorized cross-repository target. Same-repository publication uses the caller token.
required: false
EXTERNAL_PACKAGE_SOURCE_POLICY:
description: Trusted versioned JSON policy authorizing external native package repositories and exact standalone .agent.json paths.
required: true
outputs:
job_status:
value: ${{ jobs.run-agent-task.outputs.job_status }}
transcript_json:
value: ${{ jobs.run-agent-task.outputs.transcript_json }}
transcript_summary:
value: ${{ jobs.run-agent-task.outputs.transcript_summary }}
engine_data_json:
value: ${{ jobs.run-agent-task.outputs.engine_data_json }}
projected_outputs_json:
value: ${{ jobs.run-agent-task.outputs.projected_outputs_json }}
credential_mode:
value: ${{ jobs.run-agent-task.outputs.credential_mode }}
declared_artifacts_json:
value: ${{ jobs.run-agent-task.outputs.declared_artifacts_json }}
jobs:
run-agent-task:
runs-on: ubuntu-latest
env:
# Advance this only in a subsequent workflow commit after helper changes land.
WP_CODEBOX_HELPER_REVISION: d9e329e7c3bb852b857870a26d8f3853feef751d
permissions:
contents: write
pull-requests: write
outputs:
job_status: ${{ steps.execute.outputs.job_status }}
transcript_json: ${{ steps.execute.outputs.transcript_json }}
transcript_summary: ${{ steps.execute.outputs.transcript_summary }}
engine_data_json: ${{ steps.execute.outputs.engine_data_json }}
projected_outputs_json: ${{ steps.execute.outputs.projected_outputs_json }}
credential_mode: ${{ steps.execute.outputs.credential_mode }}
declared_artifacts_json: ${{ steps.execute.outputs.declared_artifacts_json }}
steps:
- name: Validate pinned WP Codebox helper revision
run: |
if ! [[ "${WP_CODEBOX_HELPER_REVISION}" =~ ^[0-9a-f]{40}$ ]]; then
echo "WP_CODEBOX_HELPER_REVISION must be a full lowercase Git commit SHA" >&2
exit 1
fi
- name: Checkout WP Codebox workflow helpers
uses: actions/checkout@v4
with:
repository: Automattic/wp-codebox
# This checkout fetches the exact immutable helper source and verifies
# its reachability independently of the caller's workflow revision.
ref: ${{ env.WP_CODEBOX_HELPER_REVISION }}
path: .wp-codebox-workflow
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install WP Codebox runtime
working-directory: .wp-codebox-workflow
run: npm ci
- name: Checkout target workspace
uses: actions/checkout@v4
with:
repository: ${{ inputs.target_repo }}
path: workspace
token: ${{ secrets.ACCESS_TOKEN || github.token }}
persist-credentials: false
- name: Build Codebox task request
id: plan
env:
EXTERNAL_PACKAGE_SOURCE: ${{ inputs.external_package_source }}
EXTERNAL_PACKAGE_SOURCE_POLICY: ${{ secrets.EXTERNAL_PACKAGE_SOURCE_POLICY }}
WORKLOAD_ID: ${{ inputs.workload_id }}
WORKLOAD_LABEL: ${{ inputs.workload_label }}
COMPONENT_ID: ${{ inputs.component_id }}
TARGET_REPO: ${{ inputs.target_repo }}
CALLER_REPO: ${{ github.repository }}
PROMPT: ${{ inputs.prompt }}
WRITABLE_PATHS: ${{ inputs.writable_paths }}
PROVIDER: ${{ inputs.provider }}
MODEL: ${{ inputs.model }}
# Not `RUNNER_WORKSPACE`: that name is a reserved GitHub Actions
# built-in (the `RUNNER_` prefix cannot be overridden), so a workflow
# value set under it is ignored and the script receives the runner's
# workspace path instead of this JSON config.
RUNNER_WORKSPACE_CONFIG: ${{ inputs.runner_workspace }}
VALIDATION_DEPENDENCIES: ${{ inputs.validation_dependencies }}
VERIFICATION_COMMANDS: ${{ inputs.verification_commands }}
DRIFT_CHECKS: ${{ inputs.drift_checks }}
SUCCESS_REQUIRES_PR: ${{ inputs.success_requires_pr }}
ACCESS_TOKEN_REPOS: ${{ inputs.access_token_repos }}
ALLOWED_REPOS: ${{ inputs.allowed_repos }}
MAX_TURNS: ${{ inputs.max_turns }}
TIME_BUDGET_MS: ${{ inputs.time_budget_ms }}
OUTPUT_PROJECTIONS: ${{ inputs.output_projections }}
TRANSCRIPT_ARTIFACT_NAME: ${{ inputs.transcript_artifact_name }}
REPLAY_BUNDLE_ARTIFACT_NAME: ${{ inputs.replay_bundle_artifact_name }}
EXPECTED_ARTIFACTS: ${{ inputs.expected_artifacts }}
ARTIFACT_DECLARATIONS: ${{ inputs.artifact_declarations }}
CALLBACK_DATA: ${{ inputs.callback_data }}
RUN_AGENT: ${{ inputs.run_agent }}
DRY_RUN: ${{ inputs.dry_run }}
run: node .wp-codebox-workflow/.github/scripts/run-agent-task/build-codebox-task-request.mjs
- name: Execute native agent task
id: execute
env:
AGENT_TASK_REQUEST_PATH: ${{ github.workspace }}/.codebox/agent-task-request.json
AGENT_TASK_WORKSPACE: ${{ github.workspace }}/workspace
WP_CODEBOX_WORKFLOW_ROOT: ${{ github.workspace }}/.wp-codebox-workflow
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
MODEL_PROVIDER_SECRET_1: ${{ secrets.MODEL_PROVIDER_SECRET_1 }}
MODEL_PROVIDER_SECRET_2: ${{ secrets.MODEL_PROVIDER_SECRET_2 }}
MODEL_PROVIDER_SECRET_3: ${{ secrets.MODEL_PROVIDER_SECRET_3 }}
MODEL_PROVIDER_SECRET_4: ${{ secrets.MODEL_PROVIDER_SECRET_4 }}
MODEL_PROVIDER_SECRET_5: ${{ secrets.MODEL_PROVIDER_SECRET_5 }}
# Runner workspace tools resolve GitHub credentials from this standard
# environment variable. It is never written to task inputs or artifacts.
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN || github.token }}
EXPLICIT_ACCESS_TOKEN_CONFIGURED: ${{ secrets.ACCESS_TOKEN != '' }}
EXTERNAL_PACKAGE_SOURCE_POLICY: ${{ secrets.EXTERNAL_PACKAGE_SOURCE_POLICY }}
run: node .wp-codebox-workflow/.github/scripts/run-agent-task/execute-native-agent-task.mjs
- name: Prepare Codebox task uploads
if: always()
run: node .wp-codebox-workflow/.github/scripts/run-agent-task/prepare-agent-task-upload.mjs
env:
AGENT_TASK_WORKSPACE: ${{ github.workspace }}/workspace
AGENT_TASK_REQUEST_PATH: ${{ github.workspace }}/.codebox/agent-task-request.json
AGENT_TASK_UPLOAD_PATH: ${{ github.workspace }}/workspace/.codebox/agent-task-upload
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
MODEL_PROVIDER_SECRET_1: ${{ secrets.MODEL_PROVIDER_SECRET_1 }}
MODEL_PROVIDER_SECRET_2: ${{ secrets.MODEL_PROVIDER_SECRET_2 }}
MODEL_PROVIDER_SECRET_3: ${{ secrets.MODEL_PROVIDER_SECRET_3 }}
MODEL_PROVIDER_SECRET_4: ${{ secrets.MODEL_PROVIDER_SECRET_4 }}
MODEL_PROVIDER_SECRET_5: ${{ secrets.MODEL_PROVIDER_SECRET_5 }}
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN || github.token }}
EXTERNAL_PACKAGE_SOURCE_POLICY: ${{ secrets.EXTERNAL_PACKAGE_SOURCE_POLICY }}
- name: Upload Codebox task request
if: always()
uses: actions/upload-artifact@v4
with:
name: codebox-agent-task-request-${{ github.run_id }}
path: |
workspace/.codebox/agent-task-upload/.codebox/agent-task-request.json
workspace/.codebox/agent-task-upload/.codebox/agent-task-workflow-result.json
workspace/.codebox/agent-task-upload/.codebox/native-agent-task-input.json
- name: Upload Codebox task result
if: always()
uses: actions/upload-artifact@v4
with:
name: codebox-agent-task-result-${{ github.run_id }}
path: |
workspace/.codebox/agent-task-upload/.codebox/agent-task-workflow-result.json
workspace/.codebox/agent-task-upload/.codebox/agent-task-artifacts
if-no-files-found: ignore