Fork me on GitHub
#circleci
<
2020-12-27
>
glenjamin08:12:39

It’s complicated because we don’t do a checkout on your behalf when scheduling work I think there’s something in the pipeline for better monorepo support that might help here, but i don’t have an ETA What is it about the CI run on docs changes that you want to avoid?

borkdude08:12:16

basically everything: compiling binaries, tests, wasting lots of CircleCI resources ;)

glenjamin15:01:56

Is this because of the concurrency limit, or because you have limited minutes, or just generally avoiding waste?

borkdude15:01:26

avoiding waste, thinking about the environment you know

glenjamin17:01:00

There is a trick you can do to cut a job short early and mark it as passed. It’ll still run any dependent jobs, so you might want to wrap it up in a command and sprinkle it about your jobs:

circleci task halt

borkdude11:01:33

Thanks, this helped