File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
examples/tutorials/00_sync/000_hello_acp/project Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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" , "" )
You can’t perform that action at this time.
0 commit comments