From 9475559280a6e777be63170ee5c1c6154ec9ac9a Mon Sep 17 00:00:00 2001 From: Alexandre Menasria Date: Tue, 12 Aug 2025 15:54:07 +0200 Subject: [PATCH 01/18] Workflow fix --- .github/workflows/update_speakeasy.yaml | 5 ++++- pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update_speakeasy.yaml b/.github/workflows/update_speakeasy.yaml index 7fe5d3e2..e719c9cf 100644 --- a/.github/workflows/update_speakeasy.yaml +++ b/.github/workflows/update_speakeasy.yaml @@ -12,12 +12,14 @@ on: required: true type: string targets: - description: 'Targets to update. If not provided, all targets will be updated.' + description: 'Targets to update.' + required: true type: choice options: - mistralai-sdk - mistralai-azure-sdk - mistralai-gcp-sdk + - all jobs: update-sdks: @@ -40,6 +42,7 @@ jobs: - name: Install dependencies run: | + cp README.md README-PYPI.md poetry install --with dev - name: Configure Git diff --git a/pyproject.toml b/pyproject.toml index 80e65e4f..cd3f15eb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "mistralai" version = "1.9.3" description = "Python Client SDK for the Mistral AI API." authors = [{ name = "Mistral" },] -readme = "README-PYPI.md" +readme = "README.md" requires-python = ">=3.9" dependencies = [ "eval-type-backport >=0.2.0", From b32eb6f22750c7c4cdbe0c80306dc928133720fa Mon Sep 17 00:00:00 2001 From: Alexandre Menasria Date: Tue, 12 Aug 2025 15:57:30 +0200 Subject: [PATCH 02/18] Install Speakeasy --- .github/workflows/update_speakeasy.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/update_speakeasy.yaml b/.github/workflows/update_speakeasy.yaml index e719c9cf..eda3ee4c 100644 --- a/.github/workflows/update_speakeasy.yaml +++ b/.github/workflows/update_speakeasy.yaml @@ -45,6 +45,11 @@ jobs: cp README.md README-PYPI.md poetry install --with dev + - name: Install Speakeasy CLI + run: | + curl -fsSL https://go.speakeasy.com/cli-install.sh | sh + speakeasy version + - name: Configure Git run: | git config --local user.email "action@github.com" From b96fb07d4f5008755dae5dd5fef8dc6844614651 Mon Sep 17 00:00:00 2001 From: Alexandre Menasria Date: Tue, 12 Aug 2025 15:58:54 +0200 Subject: [PATCH 03/18] Fix --- .github/workflows/update_speakeasy.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update_speakeasy.yaml b/.github/workflows/update_speakeasy.yaml index eda3ee4c..5cde6a9b 100644 --- a/.github/workflows/update_speakeasy.yaml +++ b/.github/workflows/update_speakeasy.yaml @@ -48,7 +48,7 @@ jobs: - name: Install Speakeasy CLI run: | curl -fsSL https://go.speakeasy.com/cli-install.sh | sh - speakeasy version + speakeasy --version - name: Configure Git run: | From 4747cb88fcd21e7387c020c71d9dd713be87fad3 Mon Sep 17 00:00:00 2001 From: Alexandre Menasria Date: Tue, 12 Aug 2025 16:02:00 +0200 Subject: [PATCH 04/18] Fix --- .github/workflows/update_speakeasy.yaml | 2 ++ pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update_speakeasy.yaml b/.github/workflows/update_speakeasy.yaml index 5cde6a9b..7b51b73e 100644 --- a/.github/workflows/update_speakeasy.yaml +++ b/.github/workflows/update_speakeasy.yaml @@ -70,6 +70,8 @@ jobs: poetry run inv update-speakeasy \ --version "${{ github.event.inputs.version }}" \ $TARGETS_ARGS + env: + SPEAKEASY_API_KEY: ${{ secrets.SPEAKEASY_API_KEY }} - name: Check for changes id: check-changes diff --git a/pyproject.toml b/pyproject.toml index cd3f15eb..80e65e4f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "mistralai" version = "1.9.3" description = "Python Client SDK for the Mistral AI API." authors = [{ name = "Mistral" },] -readme = "README.md" +readme = "README-PYPI.md" requires-python = ">=3.9" dependencies = [ "eval-type-backport >=0.2.0", From efd60d04e4866bbbb913daee5b5839bc46f52fbd Mon Sep 17 00:00:00 2001 From: Alexandre Menasria Date: Tue, 12 Aug 2025 16:04:47 +0200 Subject: [PATCH 05/18] Fix --- .github/workflows/update_speakeasy.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update_speakeasy.yaml b/.github/workflows/update_speakeasy.yaml index 7b51b73e..b8bb1250 100644 --- a/.github/workflows/update_speakeasy.yaml +++ b/.github/workflows/update_speakeasy.yaml @@ -94,7 +94,7 @@ jobs: Targets updated: ${{ github.event.inputs.targets }} This PR was automatically generated by the Update Speakeasy workflow." - git push origin ${{ github.event.inputs.branch_name }} + git push --set-upstream origin ${{ github.event.inputs.branch_name }} - name: Create Pull Request if: steps.check-changes.outputs.has_changes == 'true' From 369ac489e33902792a352ac015c860e9ef46bdfe Mon Sep 17 00:00:00 2001 From: Alexandre Menasria Date: Tue, 12 Aug 2025 16:13:04 +0200 Subject: [PATCH 06/18] Fix --- .github/workflows/update_speakeasy.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update_speakeasy.yaml b/.github/workflows/update_speakeasy.yaml index b8bb1250..d3aa15a4 100644 --- a/.github/workflows/update_speakeasy.yaml +++ b/.github/workflows/update_speakeasy.yaml @@ -54,6 +54,7 @@ jobs: run: | git config --local user.email "action@github.com" git config --local user.name "GitHub Action" + git config --local --type bool push.autoSetupRemote true - name: Create branch run: | @@ -94,7 +95,7 @@ jobs: Targets updated: ${{ github.event.inputs.targets }} This PR was automatically generated by the Update Speakeasy workflow." - git push --set-upstream origin ${{ github.event.inputs.branch_name }} + git push - name: Create Pull Request if: steps.check-changes.outputs.has_changes == 'true' From 4ea0ffa6b3101f909771a3a90a62a490a7eeb21e Mon Sep 17 00:00:00 2001 From: Alexandre Menasria Date: Tue, 12 Aug 2025 16:19:19 +0200 Subject: [PATCH 07/18] Fix --- .github/workflows/update_speakeasy.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update_speakeasy.yaml b/.github/workflows/update_speakeasy.yaml index d3aa15a4..168d04a8 100644 --- a/.github/workflows/update_speakeasy.yaml +++ b/.github/workflows/update_speakeasy.yaml @@ -58,7 +58,9 @@ jobs: - name: Create branch run: | - git checkout -b update-speakeasy-to-${{ github.event.inputs.version }}-${{ github.run_id }} + branch_name="update-speakeasy-to-${{ github.event.inputs.version }}-${{ github.run_id }}" + git checkout -b $branch_name + echo "branch_name=$branch_name" >> $GITHUB_OUTPUT - name: Update Speakeasy SDKs run: | @@ -103,7 +105,7 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} base: main - branch: ${{ github.event.inputs.branch_name }} + branch: ${{ steps.create-branch.outputs.branch_name }} title: "Update Speakeasy SDKs to version ${{ github.event.inputs.version }}" body: | ## Summary From bc84e568c6c0bd86ad3e08a75ec7c66374eca53f Mon Sep 17 00:00:00 2001 From: Alexandre Menasria Date: Tue, 12 Aug 2025 16:46:48 +0200 Subject: [PATCH 08/18] Fix --- .github/workflows/update_speakeasy.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/update_speakeasy.yaml b/.github/workflows/update_speakeasy.yaml index 168d04a8..d651519b 100644 --- a/.github/workflows/update_speakeasy.yaml +++ b/.github/workflows/update_speakeasy.yaml @@ -58,9 +58,7 @@ jobs: - name: Create branch run: | - branch_name="update-speakeasy-to-${{ github.event.inputs.version }}-${{ github.run_id }}" - git checkout -b $branch_name - echo "branch_name=$branch_name" >> $GITHUB_OUTPUT + git checkout -b update-speakeasy-to-${{ github.event.inputs.version }}-${{ github.run_id }} - name: Update Speakeasy SDKs run: | @@ -105,7 +103,7 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} base: main - branch: ${{ steps.create-branch.outputs.branch_name }} + branch: update-speakeasy-to-${{ github.event.inputs.version }}-${{ github.run_id }} title: "Update Speakeasy SDKs to version ${{ github.event.inputs.version }}" body: | ## Summary From d20a14f168a33175c451c3f21bc3d3ed8d73a970 Mon Sep 17 00:00:00 2001 From: Alexandre Menasria Date: Tue, 12 Aug 2025 16:55:35 +0200 Subject: [PATCH 09/18] Fix --- .github/workflows/update_speakeasy.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update_speakeasy.yaml b/.github/workflows/update_speakeasy.yaml index d651519b..2fb39e13 100644 --- a/.github/workflows/update_speakeasy.yaml +++ b/.github/workflows/update_speakeasy.yaml @@ -95,7 +95,7 @@ jobs: Targets updated: ${{ github.event.inputs.targets }} This PR was automatically generated by the Update Speakeasy workflow." - git push + git push origin update-speakeasy-to-${{ github.event.inputs.version }}-${{ github.run_id }} - name: Create Pull Request if: steps.check-changes.outputs.has_changes == 'true' From c6959f0853aa8b4c898e1c0169e31490655f4d57 Mon Sep 17 00:00:00 2001 From: Alexandre Menasria Date: Tue, 12 Aug 2025 17:32:51 +0200 Subject: [PATCH 10/18] Fix PR push --- .github/workflows/update_speakeasy.yaml | 46 +++++++------------------ 1 file changed, 13 insertions(+), 33 deletions(-) diff --git a/.github/workflows/update_speakeasy.yaml b/.github/workflows/update_speakeasy.yaml index 2fb39e13..97f78d3f 100644 --- a/.github/workflows/update_speakeasy.yaml +++ b/.github/workflows/update_speakeasy.yaml @@ -99,39 +99,19 @@ jobs: - name: Create Pull Request if: steps.check-changes.outputs.has_changes == 'true' - uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8 - with: - token: ${{ secrets.GITHUB_TOKEN }} - base: main - branch: update-speakeasy-to-${{ github.event.inputs.version }}-${{ github.run_id }} - title: "Update Speakeasy SDKs to version ${{ github.event.inputs.version }}" - body: | - ## Summary - - This PR updates the Speakeasy SDKs to version `${{ github.event.inputs.version }}`. - - ## Changes - - - **Version**: Updated to `${{ github.event.inputs.version }}` - - **Targets**: ${{ github.event.inputs.targets }} - - ## Files Updated - - The following SDK files have been regenerated: - - Generated SDK code files - - Updated dependencies and configurations - - ## How to Review - - 1. Check that the generated files look correct - 2. Verify that the version update is appropriate - 3. Ensure all target SDKs are properly updated - - --- - - *This PR was automatically generated by the [Update Speakeasy workflow](.github/workflows/update_speakeasy.yaml)* - labels: automated - assignees: ${{ github.actor }} + run: | + gh pr create \ + --base main \ + --head update-speakeasy-to-${{ github.event.inputs.version }}-${{ github.run_id }} \ + --title "Update Speakeasy SDKs to version ${{ github.event.inputs.version }}" \ + --body "This PR updates the Speakeasy SDKs to version `${{ github.event.inputs.version }}`. + It was automatically generated by the [Update Speakeasy workflow](.github/workflows/update_speakeasy.yaml). + " \ + --label automated \ + --label speakeasy-update \ + --assignee ${{ github.actor }} + env: + GITHUB_TOKEN: ${{ secrets.SPEAKEASY_WORKFLOW_GITHUB_PAT }} - name: Comment on workflow run if: steps.check-changes.outputs.has_changes == 'false' From b41a7dab9ad4669246a54bb6dc0187dae165dbe0 Mon Sep 17 00:00:00 2001 From: Alexandre Menasria Date: Tue, 12 Aug 2025 17:54:42 +0200 Subject: [PATCH 11/18] Fix --- .github/workflows/update_speakeasy.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/update_speakeasy.yaml b/.github/workflows/update_speakeasy.yaml index 97f78d3f..8c7d7db5 100644 --- a/.github/workflows/update_speakeasy.yaml +++ b/.github/workflows/update_speakeasy.yaml @@ -58,7 +58,7 @@ jobs: - name: Create branch run: | - git checkout -b update-speakeasy-to-${{ github.event.inputs.version }}-${{ github.run_id }} + git checkout -b update-speakeasy-to-${{ github.event.inputs.version }}-$(date +%Y%m%d-%H%M%S) - name: Update Speakeasy SDKs run: | @@ -95,14 +95,14 @@ jobs: Targets updated: ${{ github.event.inputs.targets }} This PR was automatically generated by the Update Speakeasy workflow." - git push origin update-speakeasy-to-${{ github.event.inputs.version }}-${{ github.run_id }} + git push origin update-speakeasy-to-${{ github.event.inputs.version }}-$(date +%Y%m%d-%H%M%S) - name: Create Pull Request if: steps.check-changes.outputs.has_changes == 'true' run: | gh pr create \ --base main \ - --head update-speakeasy-to-${{ github.event.inputs.version }}-${{ github.run_id }} \ + --head update-speakeasy-to-${{ github.event.inputs.version }}-$(date +%Y%m%d-%H%M%S) \ --title "Update Speakeasy SDKs to version ${{ github.event.inputs.version }}" \ --body "This PR updates the Speakeasy SDKs to version `${{ github.event.inputs.version }}`. It was automatically generated by the [Update Speakeasy workflow](.github/workflows/update_speakeasy.yaml). From 0ed803d57e13f3cff796acb00a93055f61f140db Mon Sep 17 00:00:00 2001 From: Alexandre Menasria Date: Tue, 12 Aug 2025 18:00:10 +0200 Subject: [PATCH 12/18] Fix --- .github/workflows/update_speakeasy.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/update_speakeasy.yaml b/.github/workflows/update_speakeasy.yaml index 8c7d7db5..f8d5118a 100644 --- a/.github/workflows/update_speakeasy.yaml +++ b/.github/workflows/update_speakeasy.yaml @@ -58,7 +58,9 @@ jobs: - name: Create branch run: | - git checkout -b update-speakeasy-to-${{ github.event.inputs.version }}-$(date +%Y%m%d-%H%M%S) + TIMESTAMP=$(date +%Y%m%d-%H%M%S) + echo "TIMESTAMP=$TIMESTAMP" >> $GITHUB_ENV + git checkout -b update-speakeasy-to-${{ github.event.inputs.version }}-$TIMESTAMP - name: Update Speakeasy SDKs run: | @@ -95,14 +97,14 @@ jobs: Targets updated: ${{ github.event.inputs.targets }} This PR was automatically generated by the Update Speakeasy workflow." - git push origin update-speakeasy-to-${{ github.event.inputs.version }}-$(date +%Y%m%d-%H%M%S) + git push origin update-speakeasy-to-${{ github.event.inputs.version }}-${{ env.TIMESTAMP }} - name: Create Pull Request if: steps.check-changes.outputs.has_changes == 'true' run: | gh pr create \ --base main \ - --head update-speakeasy-to-${{ github.event.inputs.version }}-$(date +%Y%m%d-%H%M%S) \ + --head update-speakeasy-to-${{ github.event.inputs.version }}-${{ env.TIMESTAMP }} \ --title "Update Speakeasy SDKs to version ${{ github.event.inputs.version }}" \ --body "This PR updates the Speakeasy SDKs to version `${{ github.event.inputs.version }}`. It was automatically generated by the [Update Speakeasy workflow](.github/workflows/update_speakeasy.yaml). From fb69afd15de641a196a5571b1acff01607bb4f86 Mon Sep 17 00:00:00 2001 From: Alexandre Menasria Date: Tue, 12 Aug 2025 18:04:37 +0200 Subject: [PATCH 13/18] Fix --- .github/workflows/update_speakeasy.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update_speakeasy.yaml b/.github/workflows/update_speakeasy.yaml index f8d5118a..a751af1b 100644 --- a/.github/workflows/update_speakeasy.yaml +++ b/.github/workflows/update_speakeasy.yaml @@ -106,7 +106,7 @@ jobs: --base main \ --head update-speakeasy-to-${{ github.event.inputs.version }}-${{ env.TIMESTAMP }} \ --title "Update Speakeasy SDKs to version ${{ github.event.inputs.version }}" \ - --body "This PR updates the Speakeasy SDKs to version `${{ github.event.inputs.version }}`. + --body "This PR updates the Speakeasy SDKs to version \`${{ github.event.inputs.version }}\`. It was automatically generated by the [Update Speakeasy workflow](.github/workflows/update_speakeasy.yaml). " \ --label automated \ From 1e74360d113cab2cf3998de04ac7ecc71faa6120 Mon Sep 17 00:00:00 2001 From: Alexandre Menasria Date: Tue, 12 Aug 2025 18:08:19 +0200 Subject: [PATCH 14/18] Fix --- .github/workflows/update_speakeasy.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update_speakeasy.yaml b/.github/workflows/update_speakeasy.yaml index a751af1b..5df9571e 100644 --- a/.github/workflows/update_speakeasy.yaml +++ b/.github/workflows/update_speakeasy.yaml @@ -106,7 +106,7 @@ jobs: --base main \ --head update-speakeasy-to-${{ github.event.inputs.version }}-${{ env.TIMESTAMP }} \ --title "Update Speakeasy SDKs to version ${{ github.event.inputs.version }}" \ - --body "This PR updates the Speakeasy SDKs to version \`${{ github.event.inputs.version }}\`. + --body "This PR updates the Speakeasy SDKs to version ${{ github.event.inputs.version }}. It was automatically generated by the [Update Speakeasy workflow](.github/workflows/update_speakeasy.yaml). " \ --label automated \ From 157857a65f0bc0466fb42bef2788b187cbb784f2 Mon Sep 17 00:00:00 2001 From: Alexandre Menasria Date: Tue, 12 Aug 2025 18:12:11 +0200 Subject: [PATCH 15/18] Fix --- .github/workflows/update_speakeasy.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/update_speakeasy.yaml b/.github/workflows/update_speakeasy.yaml index 5df9571e..ed8c42b8 100644 --- a/.github/workflows/update_speakeasy.yaml +++ b/.github/workflows/update_speakeasy.yaml @@ -106,9 +106,7 @@ jobs: --base main \ --head update-speakeasy-to-${{ github.event.inputs.version }}-${{ env.TIMESTAMP }} \ --title "Update Speakeasy SDKs to version ${{ github.event.inputs.version }}" \ - --body "This PR updates the Speakeasy SDKs to version ${{ github.event.inputs.version }}. - It was automatically generated by the [Update Speakeasy workflow](.github/workflows/update_speakeasy.yaml). - " \ + --body "This PR updates the Speakeasy SDKs to version ${{ github.event.inputs.version }}.\nIt was automatically generated by the [Update Speakeasy workflow](.github/workflows/update_speakeasy.yaml)." \ --label automated \ --label speakeasy-update \ --assignee ${{ github.actor }} From 1343a093a9df71af6be0cd6baa8e7d99d69712a6 Mon Sep 17 00:00:00 2001 From: Alexandre Menasria Date: Tue, 12 Aug 2025 18:12:33 +0200 Subject: [PATCH 16/18] Fix --- .github/workflows/update_speakeasy.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update_speakeasy.yaml b/.github/workflows/update_speakeasy.yaml index ed8c42b8..3b08835e 100644 --- a/.github/workflows/update_speakeasy.yaml +++ b/.github/workflows/update_speakeasy.yaml @@ -106,7 +106,7 @@ jobs: --base main \ --head update-speakeasy-to-${{ github.event.inputs.version }}-${{ env.TIMESTAMP }} \ --title "Update Speakeasy SDKs to version ${{ github.event.inputs.version }}" \ - --body "This PR updates the Speakeasy SDKs to version ${{ github.event.inputs.version }}.\nIt was automatically generated by the [Update Speakeasy workflow](.github/workflows/update_speakeasy.yaml)." \ + --body "This PR updates the Speakeasy SDKs to version `${{ github.event.inputs.version }}`.\n\nIt was automatically generated by the [Update Speakeasy workflow](.github/workflows/update_speakeasy.yaml)." \ --label automated \ --label speakeasy-update \ --assignee ${{ github.actor }} From 5d1a2f9d744968859bdfc7efc4e7992c430cd312 Mon Sep 17 00:00:00 2001 From: Alexandre Menasria Date: Tue, 12 Aug 2025 18:21:56 +0200 Subject: [PATCH 17/18] Fix --- .github/workflows/update_speakeasy.yaml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/update_speakeasy.yaml b/.github/workflows/update_speakeasy.yaml index 3b08835e..314548ae 100644 --- a/.github/workflows/update_speakeasy.yaml +++ b/.github/workflows/update_speakeasy.yaml @@ -92,11 +92,7 @@ jobs: if: steps.check-changes.outputs.has_changes == 'true' run: | git add . - git commit -m "Update Speakeasy SDKs to version ${{ github.event.inputs.version }} - - Targets updated: ${{ github.event.inputs.targets }} - - This PR was automatically generated by the Update Speakeasy workflow." + git commit -m "Update Speakeasy SDKs to version ${{ github.event.inputs.version }}" git push origin update-speakeasy-to-${{ github.event.inputs.version }}-${{ env.TIMESTAMP }} - name: Create Pull Request @@ -106,7 +102,7 @@ jobs: --base main \ --head update-speakeasy-to-${{ github.event.inputs.version }}-${{ env.TIMESTAMP }} \ --title "Update Speakeasy SDKs to version ${{ github.event.inputs.version }}" \ - --body "This PR updates the Speakeasy SDKs to version `${{ github.event.inputs.version }}`.\n\nIt was automatically generated by the [Update Speakeasy workflow](.github/workflows/update_speakeasy.yaml)." \ + --body "This PR updates the Speakeasy SDKs to version ${{ github.event.inputs.version }}.\n\nIt was automatically generated by the [Update Speakeasy workflow](.github/workflows/update_speakeasy.yaml)." \ --label automated \ --label speakeasy-update \ --assignee ${{ github.actor }} From b78075f6d3bfc1046c0790ba9f3b03504d2328a7 Mon Sep 17 00:00:00 2001 From: Alexandre Menasria Date: Tue, 12 Aug 2025 18:25:19 +0200 Subject: [PATCH 18/18] Fix --- .github/workflows/update_speakeasy.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update_speakeasy.yaml b/.github/workflows/update_speakeasy.yaml index 314548ae..06449cf1 100644 --- a/.github/workflows/update_speakeasy.yaml +++ b/.github/workflows/update_speakeasy.yaml @@ -102,7 +102,7 @@ jobs: --base main \ --head update-speakeasy-to-${{ github.event.inputs.version }}-${{ env.TIMESTAMP }} \ --title "Update Speakeasy SDKs to version ${{ github.event.inputs.version }}" \ - --body "This PR updates the Speakeasy SDKs to version ${{ github.event.inputs.version }}.\n\nIt was automatically generated by the [Update Speakeasy workflow](.github/workflows/update_speakeasy.yaml)." \ + --body "This PR updates the Speakeasy SDKs to version ${{ github.event.inputs.version }}. It was automatically generated by the [Update Speakeasy workflow](.github/workflows/update_speakeasy.yaml)." \ --label automated \ --label speakeasy-update \ --assignee ${{ github.actor }}