-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathaction.yml
More file actions
90 lines (88 loc) · 2.38 KB
/
Copy pathaction.yml
File metadata and controls
90 lines (88 loc) · 2.38 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
name: Run an Oz cloud agent
description: Run the Oz agent in a GitHub workflow
author: Warp Team <dev@warp.dev>
inputs:
prompt:
description: Prompt for the Oz Agent
required: false
saved_prompt:
description: 'Warp Drive Saved prompt ID for the Oz agent'
required: false
default: ''
skill:
description:
'Use a skill as the base prompt for the agent. Format: `skill_name`, `repo:skill_name`, or
`org/repo:skill_name`'
required: false
default: ''
model:
description: 'Override the base model used by the agent (Warp model ID)'
required: false
default: ''
name:
description: 'Name for this agent task'
required: false
default: ''
mcp:
description:
'MCP configuration in JSON format (or path to a mcp.json file) to start before executing the
agent'
required: false
default: ''
cwd:
description: 'Current working directory for the Oz agent'
required: false
default: ''
profile:
description: 'Oz Agent profile for the Oz agent'
required: false
default: ''
output_format:
description: Format for agent output
required: true
default: text
warp_api_key:
description: 'Oz API key for the Oz agent'
required: false
default: ''
cloud:
description:
'Run the agent as a cloud agent (uses `oz agent run-cloud` instead of `oz agent run`)'
required: false
default: 'false'
host:
description: 'Host to route the cloud agent run to'
required: false
default: ''
environment:
description: 'Environment ID for the cloud agent run; defaults to no environment when unset'
required: false
default: ''
share:
description: Recipients to share the agent's session with in Oz.
required: false
default: ''
computer_use:
description:
'Enable computer use for cloud agent runs (`oz agent run-cloud --computer-use`). Ignored for
local runs.'
required: false
default: 'false'
debug:
description:
"Always enable debug logging (`--debug`), independent of GitHub's step debug option."
required: false
default: 'false'
oz_channel:
description: Oz release channel to use
required: true
default: stable
oz_version:
description: Specific Oz version to install
required: true
default: latest
runs:
using: node24
main: dist/index.js
post: dist/index.js
post-if: always()