Update workflow

This commit is contained in:
Moritz Utcke
2025-04-28 14:10:18 -03:00
parent eb1763a6c1
commit 4a2eb72f0a

View File

@@ -28,7 +28,7 @@ jobs:
id: check
run: |
git fetch origin
if [ $(git rev-list --count origin/main..origin/staging) -gt 0 ]; then
if [ $(git rev-list --count origin/staging..origin/main) -gt 0 ]; then
echo "❌ Staging ist hinter Main und benötigt ein Merge."
exit 1
fi