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: .github/workflows/agentics-maintenance.yml
+41-10Lines changed: 41 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -57,12 +57,31 @@ on:
57
57
required: false
58
58
type: string
59
59
default: ''
60
+
workflow_call:
61
+
inputs:
62
+
operation:
63
+
description: 'Optional maintenance operation to run (disable, enable, update, upgrade, safe_outputs, create_labels, clean_cache_memories, validate)'
64
+
required: false
65
+
type: string
66
+
default: ''
67
+
run_url:
68
+
description: 'Run URL or run ID to replay safe outputs from (e.g. https://github.com/owner/repo/actions/runs/12345 or 12345). Required when operation is safe_outputs.'
69
+
required: false
70
+
type: string
71
+
default: ''
72
+
outputs:
73
+
operation_completed:
74
+
description: 'The maintenance operation that was completed (empty when none ran or a scheduled job ran)'
Copy file name to clipboardExpand all lines: pkg/workflow/maintenance_workflow.go
+70-26Lines changed: 70 additions & 26 deletions
Original file line number
Diff line number
Diff line change
@@ -269,6 +269,25 @@ on:
269
269
required: false
270
270
type: string
271
271
default: ''
272
+
workflow_call:
273
+
inputs:
274
+
operation:
275
+
description: 'Optional maintenance operation to run (disable, enable, update, upgrade, safe_outputs, create_labels, clean_cache_memories, validate)'
276
+
required: false
277
+
type: string
278
+
default: ''
279
+
run_url:
280
+
description: 'Run URL or run ID to replay safe outputs from (e.g. https://github.com/owner/repo/actions/runs/12345 or 12345). Required when operation is safe_outputs.'
281
+
required: false
282
+
type: string
283
+
default: ''
284
+
outputs:
285
+
operation_completed:
286
+
description: 'The maintenance operation that was completed (empty when none ran or a scheduled job ran)'
0 commit comments