From 49b80e66d348c6da278109af3fee1145dfa2a057 Mon Sep 17 00:00:00 2001 From: Jeremy Eder Date: Thu, 26 Mar 2026 16:13:47 -0400 Subject: [PATCH] Fix README version refs from v2 to v0.0.2 The v2 tag doesn't exist. Update all examples to use the latest available release tag. Co-Authored-By: Claude Opus 4.6 (1M context) --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 04b0efa..347af21 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ A GitHub Action that creates sessions on the [Ambient Code Platform](https://git Create a session and continue immediately: ```yaml -- uses: ambient-code/ambient-action@v2 +- uses: ambient-code/ambient-action@v0.0.2 with: api-url: ${{ secrets.AMBIENT_API_URL }} api-token: ${{ secrets.AMBIENT_BOT_TOKEN }} @@ -23,7 +23,7 @@ Create a session and continue immediately: Create a session and wait for results: ```yaml -- uses: ambient-code/ambient-action@v2 +- uses: ambient-code/ambient-action@v0.0.2 id: session with: api-url: ${{ secrets.AMBIENT_API_URL }} @@ -42,7 +42,7 @@ Create a session and wait for results: ### With a workflow ```yaml -- uses: ambient-code/ambient-action@v2 +- uses: ambient-code/ambient-action@v0.0.2 with: api-url: ${{ secrets.AMBIENT_API_URL }} api-token: ${{ secrets.AMBIENT_BOT_TOKEN }} @@ -64,7 +64,7 @@ jobs: if: contains(github.event.comment.body, '/ambient') runs-on: ubuntu-latest steps: - - uses: ambient-code/ambient-action@v2 + - uses: ambient-code/ambient-action@v0.0.2 with: api-url: ${{ secrets.AMBIENT_API_URL }} api-token: ${{ secrets.AMBIENT_BOT_TOKEN }}