Means to skip tasks if PR is a draft?

I am wondering how one could know whether a PR is a draft one and based on this, skip certain tasks.

E.g. skip deployment tasks until the PR is switched from draft to open.
Indeed in some case it could nice to be able to run a complete test suite through, something that may prove hard to reproduce locally because resources or dependencies, but not yet deploy the end-result in a staging/dev environment.

1 Like

All I can think of is having a step that uses the GitHub API to check this and just quit if it’s a draft PR. There isn’t a built-in way with CircleCI.

Thanks. That’s pretty much what I had figured out.

I think it would be more convenient, if there was way for the build to have access to payload of the web hook that triggered it (maybe via a file you can retrieve in the build workspace ? Or an environment variable). No need to waste time in the Job to get back information that should already be available. Would be really neat.

Has there been any progress in this area?

For context, Bitrise already provides a couple of ways to do this