diff --git a/buildkite/src/Monorepo.dhall b/buildkite/src/Monorepo.dhall index fe7a3f085cbc..357d25500581 100644 --- a/buildkite/src/Monorepo.dhall +++ b/buildkite/src/Monorepo.dhall @@ -50,12 +50,10 @@ let commands: PipelineFilter.Type -> PipelineMode.Type -> List Cmd.Type = \(fi let pipelineHandlers = { PullRequest = '' if [ "${targetMode}" = "PullRequest" ]; then - if [ "${isIncluded}" = "True" ]; then - if (cat _computed_diff.txt | egrep -q '${dirtyWhen}'); then + if (cat _computed_diff.txt | egrep -q '${dirtyWhen}'); then echo "Triggering ${job.name} for reason:" cat _computed_diff.txt | egrep '${dirtyWhen}' ${Cmd.format trigger} - fi else echo "Skipping ${job.name} because this is a ${filter} stage" fi