From 5c7ea5a4928df7cce1504b795630f964b0496c2d Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Mon, 16 Feb 2026 10:24:13 +0000 Subject: [PATCH 1/2] Use AI-generated summary as PR commit message instead of hardcoded string Co-authored-by: Florian Rival <4ian@users.noreply.github.com> --- .github/workflows/improve-docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/improve-docs.yml b/.github/workflows/improve-docs.yml index 358330edce..1dfbc0a58b 100644 --- a/.github/workflows/improve-docs.yml +++ b/.github/workflows/improve-docs.yml @@ -76,7 +76,7 @@ jobs: uses: peter-evans/create-pull-request@v7 with: token: ${{ secrets.GITHUB_TOKEN }} - commit-message: "docs: AI-driven documentation improvement" + commit-message: ${{ steps.improve.outputs.summary }} title: "Auto: Improve documentation" body: | This PR was automatically generated by the **Improve documentation** workflow. From 8b97d872c6a1a2058b537defc3d3e4770f9389be Mon Sep 17 00:00:00 2001 From: Florian Rival Date: Mon, 16 Feb 2026 11:33:06 +0100 Subject: [PATCH 2/2] Improve summary for updates according to commits --- .github/workflows/improve-docs.yml | 2 +- .github/workflows/update-docs-from-commits.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/improve-docs.yml b/.github/workflows/improve-docs.yml index 1dfbc0a58b..97cf881690 100644 --- a/.github/workflows/improve-docs.yml +++ b/.github/workflows/improve-docs.yml @@ -17,7 +17,7 @@ on: schedule: - cron: "0 10 * * *" # Every day at 10:00 UTC (offset from the other workflow) workflow_dispatch: # Manual trigger - pull_request: # For testing in PRs + # pull_request: # For testing in PRs permissions: contents: write diff --git a/.github/workflows/update-docs-from-commits.yml b/.github/workflows/update-docs-from-commits.yml index bc8ae3ae63..bba306f32f 100644 --- a/.github/workflows/update-docs-from-commits.yml +++ b/.github/workflows/update-docs-from-commits.yml @@ -17,7 +17,7 @@ on: schedule: - cron: "0 8 * * *" # Every day at 08:00 UTC workflow_dispatch: # Manual trigger - pull_request: # For testing in PRs + # pull_request: # For testing in PRs permissions: contents: write @@ -85,7 +85,7 @@ jobs: uses: peter-evans/create-pull-request@v7 with: token: ${{ secrets.GITHUB_TOKEN }} - commit-message: "docs: auto-update documentation from GDevelop commits" + commit-message: ${{ steps.update.outputs.summary }} title: "Auto: Update documentation based on recent GDevelop changes" body: | This PR was automatically generated by the **Update docs from GDevelop commits** workflow.