Skip to content

Commit e4d3ea3

Browse files
committed
update workflow token
1 parent 8b8d97d commit e4d3ea3

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.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: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,22 +39,26 @@ 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"
42+
"examples/mistral/agents/async_conversation_run_mcp_remote.py"
4443
)
4544

4645
# Check if the no-extra-dep flag is set
4746
if [ "$NO_EXTRA_DEP" = true ]; then
4847
# Add more files to the exclude list
4948
exclude_files+=(
50-
"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.py"
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)