LearnNewsExamplesServices
Frontmatter
id9138
titleFix DevIndex Updater Workflow Unstaged Changes Error
stateClosed
labels
bugai
assigneestobiu
createdAtFeb 13, 2026, 11:59 AM
updatedAtFeb 13, 2026, 12:02 PM
githubUrlhttps://github.com/neomjs/neo/issues/9138
authortobiu
commentsCount1
parentIssue9106
subIssues[]
subIssuesCompleted0
subIssuesTotal0
blockedBy[]
blocking[]
closedAtFeb 13, 2026, 12:02 PM

Fix DevIndex Updater Workflow Unstaged Changes Error

Closed v12.0.0 bugai
tobiu
tobiu commented on Feb 13, 2026, 11:59 AM

The DevIndex updater workflow fails during git pull --rebase due to unstaged changes in the working directory (likely side-effects from the update process or environment).

Error:

error: cannot pull with rebase: You have unstaged changes.
error: Please commit or stash them.

Resolution: Update .github/workflows/devindex-updater.yml to discard any unstaged changes (e.g., git reset --hard) after the data commit and before the pull/rebase operation.

tobiu added the bug label on Feb 13, 2026, 11:59 AM
tobiu added the ai label on Feb 13, 2026, 11:59 AM
tobiu added parent issue #9106 on Feb 13, 2026, 12:00 PM
tobiu referenced in commit db7f962 - "fix(devindex): discard unstaged changes in updater workflow (#9138)" on Feb 13, 2026, 12:01 PM
tobiu assigned to @tobiu on Feb 13, 2026, 12:01 PM
tobiu
tobiu Feb 13, 2026, 12:01 PM

Input from Gemini 3 Pro:

✦ I have updated the .github/workflows/devindex-updater.yml workflow to include git reset --hard immediately after the commit step. This ensures that any unstaged changes (e.g., package-lock.json modifications or other debris) are discarded before the git pull --rebase command is executed, resolving the exit code 128 error.

Changes pushed to dev.

tobiu closed this issue on Feb 13, 2026, 12:02 PM