Merged
Conversation
- automated_updates_data.json: tracks last processed commit and past improvements - scripts/update-docs-from-commits.js: analyses recent GDevelop commits and invokes Claude Code (or Codex) to update docs accordingly - scripts/improve-docs.js: picks a new documentation area to improve each run, tracks what was improved so future runs don't repeat - scripts/package.json: minimal package manifest for the scripts folder Co-authored-by: Florian Rival <4ian@users.noreply.github.com>
- update-docs-from-commits.yml: runs daily at 08:00 UTC (+ manual trigger), clones GDevelop, analyses recent commits, and opens a PR with doc updates - improve-docs.yml: runs daily at 10:00 UTC (+ manual trigger), picks a new documentation area to improve and opens a PR - Both default to Claude Code; switching to Codex requires uncommenting a few clearly marked lines Co-authored-by: Florian Rival <4ian@users.noreply.github.com>
…y.txt Co-authored-by: Florian Rival <4ian@users.noreply.github.com>
|
Cursor Agent can help with this pull request. Just |
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
- Add 'pull_request' to 'on:' in both workflows so they run on PRs - Set 'base: main' in peter-evans/create-pull-request to fix the 'base input must be supplied' error on detached-HEAD checkouts - Capture and print AI agent stdout so output is visible in CI logs Co-authored-by: Florian Rival <4ian@users.noreply.github.com>
- automated_updates_data.json: format empty array with newline for
cleaner diffs when entries are added
- improve-docs.js: AI now edits automated_updates_data.json directly
(adds to last_improved_things) instead of writing improvement_summary.txt;
script reads back the new entry and writes summary to /tmp/ai_summary.txt
- update-docs-from-commits.js: prompt now asks for a brief summary;
script writes AI output to /tmp/ai_summary.txt and commit log to
/tmp/commit_log.txt; uses writeDataFile helper for consistent formatting
- improve-docs.yml: reads AI summary as step output and includes it in
the PR body ('The AI agent summary is:')
- update-docs-from-commits.yml: reads AI summary + commit log as step
outputs and includes both in the PR body
- .gitignore: remove unused improvement_summary.txt entry
Co-authored-by: Florian Rival <4ian@users.noreply.github.com>
Replaces fixed SUMMARY_EOF/COMMITS_EOF delimiters with randomized ones (EOF_<random hex>) and adds an extra blank line before the closing delimiter to ensure GitHub parses the multiline output correctly. Co-authored-by: Florian Rival <4ian@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add GitHub Actions and scripts to automate GDevelop documentation updates from recent commits and continuous improvements using AI.