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
fix(docs): update GitHub Action docs to match ambient-action v0.0.5 (#1233)
<!-- acp:session_id=session-bce2475a-27ed-44ff-9b77-e0b522fc111d
source=#1232 last_action=2026-04-07T15:34:00Z retry_count=2 -->
## Summary
- Updates GitHub Action docs to reflect the current `ambient-action`
`action.yml` (v0.0.5)
- Adds new inputs: `session-name`, `stop-on-run-finished`,
`poll-timeout`
- Adds new output: `session-url`
- Fixes `timeout` description (now inactivity timeout in seconds,
default `0`) and renames old polling timeout to `poll-timeout`
- Updates all example version refs from `v0.0.2` to `v0.0.5`
- Adds new "Send to existing session" mode and example
- Updates bugfix workflow doc to use `v0.0.5` and `poll-timeout`
Closes#1232
## Test plan
- [x] Docs build passes (`npm run build` in `docs/`)
- [ ] Visual review of rendered pages
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-authored-by: Ambient Code Bot <bot@ambient-code.local>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
Expand all lines: docs/src/content/docs/extensions/github-action.md
+29-10Lines changed: 29 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,30 +6,34 @@ import { Badge } from '@astrojs/starlight/components';
6
6
7
7
<Badgetext="Beta"variant="caution" />
8
8
9
-
The [`ambient-action`](https://github.com/ambient-code/ambient-action) GitHub Action (v0.0.2) creates Ambient Code Platform sessions directly from GitHub workflows. Use it to automate bug fixes on new issues, run code analysis on pull requests, or trigger any agent workflow from CI/CD.
9
+
The [`ambient-action`](https://github.com/ambient-code/ambient-action) GitHub Action creates Ambient Code Platform sessions directly from GitHub workflows. Use it to automate bug fixes on new issues, run code analysis on pull requests, or trigger any agent workflow from CI/CD.
10
10
11
11
## Modes
12
12
13
13
-**Fire-and-forget** -- Create a session and move on. The workflow does not wait for the session to finish.
14
14
-**Wait-for-completion** -- Create a session and poll until it completes (or times out). Useful when subsequent steps depend on the agent's output.
15
+
-**Send to existing session** -- Send a message to a running session instead of creating a new one (set `session-name`).
0 commit comments