Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/improve-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-docs-from-commits.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand Down