Skip to content

Commit f2126d2

Browse files
committed
adding the always()
1 parent 0a25fe5 commit f2126d2

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
find-agents:
4747
runs-on: ubuntu-latest
4848
needs: [check-permissions]
49-
if: ${{ !cancelled() && !failure() }}
49+
if: ${{ always() && (needs.check-permissions.result == 'success' || needs.check-permissions.result == 'skipped') }}
5050
outputs:
5151
agents: ${{ steps.get-agents.outputs.agents }}
5252
has_agents: ${{ steps.get-agents.outputs.has_agents }}

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ async def handle_message_send(
2323
# Extract content safely from the message
2424

2525
message_text = ""
26-
print(message_text, message_text)
2726
if hasattr(params.content, "content"):
2827
content_val = getattr(params.content, "content", "")
2928
if isinstance(content_val, str):

0 commit comments

Comments
 (0)