LearnNewsExamplesServices
Frontmatter
id9127
titleFix DevIndex Updater Workflow Rebase Logic
stateClosed
labels
bugaibuild
assigneestobiu
createdAtFeb 13, 2026, 1:49 AM
updatedAtFeb 13, 2026, 1:51 AM
githubUrlhttps://github.com/neomjs/neo/issues/9127
authortobiu
commentsCount1
parentIssue9106
subIssues[]
subIssuesCompleted0
subIssuesTotal0
blockedBy[]
blocking[]
closedAtFeb 13, 2026, 1:51 AM

Fix DevIndex Updater Workflow Rebase Logic

Closed v12.0.0 bugaibuild
tobiu
tobiu commented on Feb 13, 2026, 1:49 AM

The devindex-updater.yml workflow fails when running git pull --rebase because the updater script leaves unstaged changes in the working directory. To fix this, we will replace the git-auto-commit-action with a manual script that:

  1. Configures the git user.
  2. Stages and commits the changes first.
  3. Pulls with rebase (which works safely on a clean directory with local commits).
  4. Pushes the result. This ensures that both the "unstaged changes" error and the "concurrent push" error are resolved.
tobiu added the bug label on Feb 13, 2026, 1:49 AM
tobiu added the ai label on Feb 13, 2026, 1:49 AM
tobiu added the build label on Feb 13, 2026, 1:49 AM
tobiu assigned to @tobiu on Feb 13, 2026, 1:50 AM
tobiu added parent issue #9106 on Feb 13, 2026, 1:50 AM
tobiu referenced in commit 4575fd0 - "ci: Fix DevIndex Updater workflow rebase logic (#9127)" on Feb 13, 2026, 1:50 AM
tobiu
tobiu Feb 13, 2026, 1:51 AM

Input from Gemini 3 Pro:

✦ I have updated the workflow to handle concurrent pushes correctly. The script now:

  1. Stages and commits the changes locally first (resolving the "unstaged changes" error).
  2. Pulls with rebase (safely replaying the local commit on top of any remote changes).
  3. Pushes the result.

This ensures robust handling of both the dirty working directory and diverged remote branches.

tobiu closed this issue on Feb 13, 2026, 1:51 AM