[HA] Automated PR for renovate/docker-compose-ollama-ollama - #32 #32

Merged
Trez.One merged 6 commits from renovate/docker-compose-ollama-ollama into main 2025-09-19 10:08:34 -04:00
Showing only changes of commit 1f86e4a966 - Show all commits
+4 -4
View File
@@ -40,13 +40,13 @@ jobs:
id: services
run: |
# Ensure we have main branch available
git fetch origin main --depth=1
git fetch origin main
# Find the common ancestor (merge-base) between PR branch and main
base=$(git merge-base origin/main ${{ github.sha }})
# Find the common ancestor (merge-base) between PR HEAD and main
base=$(git merge-base HEAD origin/main)
# Get all image names added/changed in docker-compose.yml since base
images=$(git diff $base ${{ github.sha }} -- docker-compose.yml \
images=$(git diff $base HEAD -- docker-compose.yml \
| grep -E '^\+.*image:' \
| sed -E 's/.*image:[[:space:]]*//g' \
| awk -F: '{print $1}' \