You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Root cause**: The `dependency-updates` job pushes to
`chore/auto-update-deps-YYYYMMDD` branch. When the workflow runs again
(daily), the branch already exists on remote → non-fast-forward
rejection.
**Fix**: Delete the remote branch before creating it (`git push origin
--delete "$BRANCH" 2>/dev/null || true`), and check if a PR already
exists before creating another.
Also adds `|| true` guards on optional steps to prevent cascading
failures.
Co-authored-by: Alexa Amundson <alexa@blackroad.io>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
0 commit comments