circleci

rm -rf /home/circleci/.gitconfig
glenjamin 2020-12-27T08:32:39.052Z

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?

borkdude 2020-12-27T08:58:16.052600Z

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

glenjamin 2021-01-02T15:48:56.065500Z

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

borkdude 2021-01-02T15:49:26.065700Z

avoiding waste, thinking about the environment you know

glenjamin 2021-01-02T17:35:00.068Z

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

borkdude 2021-01-03T11:16:33.069Z

Thanks, this helped