-
-
Notifications
You must be signed in to change notification settings - Fork 202
Fix DevIndex Updater Workflow Rebase Logic #9127
Copy link
Copy link
Closed
Labels
aibugSomething isn't workingSomething isn't workingbuildBuild system, scripts, and configurationBuild system, scripts, and configuration
Description
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:
- Configures the git user.
- Stages and commits the changes first.
- Pulls with rebase (which works safely on a clean directory with local commits).
- Pushes the result.
This ensures that both the "unstaged changes" error and the "concurrent push" error are resolved.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
aibugSomething isn't workingSomething isn't workingbuildBuild system, scripts, and configurationBuild system, scripts, and configuration