ci: run all jobs if docker-compose.yml changes (#9639)

This commit is contained in:
Thomas Eizinger
2025-06-24 08:16:25 +02:00
committed by GitHub
parent a68d46bd24
commit 9616296ebc

View File

@@ -78,6 +78,12 @@ jobs:
exit 0;
fi
# Run all jobs if docker-compose changes
if grep -q '^docker-compose.yml' changed_files.txt; then
echo "jobs_to_run=$jobs" >> $GITHUB_OUTPUT
exit 0;
fi
jobs="static-analysis" # Always run static-analysis
if grep -q '^rust/' changed_files.txt; then