Skip to content

Commit 62a9242

Browse files
committed
update workflow token
1 parent 8b8d97d commit 62a9242

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/sdk_generation_mistralai_sdk.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ jobs:
2424
speakeasy_version: latest
2525
target: mistralai-sdk
2626
secrets:
27-
github_access_token: ${{ secrets.SPEAKEASY_WORKFLOW_GITHUB_PAT }}
27+
github_access_token: ${{ secrets.GITHUB_TOKEN }}
2828
pypi_token: ${{ secrets.PYPI_TOKEN }}
2929
speakeasy_api_key: ${{ secrets.SPEAKEASY_API_KEY }}

scripts/run_examples.sh

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ exclude_files=(
3939
"examples/mistral/mcp_servers/stdio_server.py"
4040
"examples/mistral/agents/async_conversation_run_stream.py"
4141
"examples/mistral/agents/async_conversation_run_mcp.py"
42-
"examples/mistral/agents/async_conversation_run_mcp_remote.py"
43-
"examples/mistral/agents/async_multi_turn_conversation"
4442
)
4543

4644
# Check if the no-extra-dep flag is set
@@ -50,11 +48,17 @@ if [ "$NO_EXTRA_DEP" = true ]; then
5048
"examples/mistral/agents/async_conversation_run_mcp_remote.py"
5149
"examples/mistral/agents/async_conversation_run_stream.py"
5250
"examples/mistral/agents/async_conversation_run.py"
51+
"examples/mistral/agents/async_multi_turn_conversation"
5352
)
5453
fi
5554

5655
failed=0
5756

57+
echo "Skipping scripts"
58+
for file in "${exclude_files[@]}"; do
59+
echo "$file"
60+
done
61+
5862
# Function to run a test with retries
5963
run_test_with_retries() {
6064
local file="$1"

0 commit comments

Comments
 (0)