Frontmatter
| id | 9138 |
| title | Fix DevIndex Updater Workflow Unstaged Changes Error |
| state | Closed |
| labels | bugai |
| assignees | tobiu |
| createdAt | Feb 13, 2026, 11:59 AM |
| updatedAt | Feb 13, 2026, 12:02 PM |
| githubUrl | https://github.com/neomjs/neo/issues/9138 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | 9106 |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Feb 13, 2026, 12:02 PM |
Fix DevIndex Updater Workflow Unstaged Changes Error
tobiu added parent issue #9106 on Feb 13, 2026, 12:00 PM
tobiu assigned to @tobiu on Feb 13, 2026, 12:01 PM

tobiu
Feb 13, 2026, 12:01 PM
Input from Gemini 3 Pro:
✦ I have updated the
.github/workflows/devindex-updater.ymlworkflow to includegit reset --hardimmediately after the commit step. This ensures that any unstaged changes (e.g.,package-lock.jsonmodifications or other debris) are discarded before thegit pull --rebasecommand is executed, resolving the exit code 128 error.Changes pushed to
dev.
tobiu closed this issue on Feb 13, 2026, 12:02 PM
The DevIndex updater workflow fails during
git pull --rebasedue to unstaged changes in the working directory (likely side-effects from the update process or environment).Error:
Resolution: Update
.github/workflows/devindex-updater.ymlto discard any unstaged changes (e.g.,git reset --hard) after the data commit and before the pull/rebase operation.