Skip to content

Commit e209727

Browse files
authored
Improve AI generated commit summaries (#440)
1 parent ee8bc04 commit e209727

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/improve-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
schedule:
1818
- cron: "0 10 * * *" # Every day at 10:00 UTC (offset from the other workflow)
1919
workflow_dispatch: # Manual trigger
20-
pull_request: # For testing in PRs
20+
# pull_request: # For testing in PRs
2121

2222
permissions:
2323
contents: write
@@ -76,7 +76,7 @@ jobs:
7676
uses: peter-evans/create-pull-request@v7
7777
with:
7878
token: ${{ secrets.GITHUB_TOKEN }}
79-
commit-message: "docs: AI-driven documentation improvement"
79+
commit-message: ${{ steps.improve.outputs.summary }}
8080
title: "Auto: Improve documentation"
8181
body: |
8282
This PR was automatically generated by the **Improve documentation** workflow.

.github/workflows/update-docs-from-commits.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
schedule:
1818
- cron: "0 8 * * *" # Every day at 08:00 UTC
1919
workflow_dispatch: # Manual trigger
20-
pull_request: # For testing in PRs
20+
# pull_request: # For testing in PRs
2121

2222
permissions:
2323
contents: write
@@ -85,7 +85,7 @@ jobs:
8585
uses: peter-evans/create-pull-request@v7
8686
with:
8787
token: ${{ secrets.GITHUB_TOKEN }}
88-
commit-message: "docs: auto-update documentation from GDevelop commits"
88+
commit-message: ${{ steps.update.outputs.summary }}
8989
title: "Auto: Update documentation based on recent GDevelop changes"
9090
body: |
9191
This PR was automatically generated by the **Update docs from GDevelop commits** workflow.

0 commit comments

Comments
 (0)