workflow: add git fetch before rebasing
Some checks failed
Update Nix Flake / update-flake (push) Failing after 15s

This commit is contained in:
Julian Mutter 2025-04-30 13:15:25 +02:00
parent 3cf8f19fcc
commit 6d2a7f50df

View File

@ -25,6 +25,7 @@ jobs:
- name: Rebase from master branch
shell: bash
run: |
git fetch origin master
commits_ahead=$(git rev-list --count HEAD..origin/master)
echo "Commits ahead: $commits_ahead"
git log --oneline -5