Skip to content

Commit 8ce290a

Browse files
committed
testing the fix
1 parent bbefa53 commit 8ce290a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build-and-push-tutorial-agent.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@ jobs:
7676
BASE_BRANCH="origin/${{ github.base_ref }}"
7777
echo "Comparing against PR base branch: $BASE_BRANCH"
7878
else
79-
BASE_BRANCH="HEAD~1"
79+
# For pushes to main, compare against the first parent (pre-merge state)
80+
BASE_BRANCH="HEAD^1"
8081
echo "Comparing against previous commit: $BASE_BRANCH"
8182
fi
8283
@@ -190,7 +191,7 @@ jobs:
190191
echo "🚀 Building and pushing agent: ${{ matrix.agent_path }}"
191192
else
192193
SHOULD_PUSH=false
193-
VERSION_TAG="${{ github.commit.sha }}"
194+
VERSION_TAG="${{ github.sha }}"
194195
echo "🔍 Validating build for agent: ${{ matrix.agent_path }}"
195196
fi
196197

examples/tutorials/00_sync/000_hello_acp/project/acp.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ async def handle_message_send(
2121
) -> Union[TaskMessageContent, AsyncGenerator[TaskMessageUpdate, None]]:
2222
"""Default message handler with streaming support"""
2323
# Extract content safely from the message
24-
logger.info("msg", params)
2524
message_text = ""
2625
if hasattr(params.content, "content"):
2726
content_val = getattr(params.content, "content", "")

0 commit comments

Comments
 (0)