A company has a monorepo with multiple microservices. They want to only build and deploy the service that changed. What CI/CD practice should they implement?
Cloud Build steps can be guarded with bash commands checking git diff output.
Why this answer
Using git diff to detect changes in specific paths allows conditional build steps in Cloud Build, triggering only the affected service.