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.