I have a very basic .drone.yml
file:
kind: pipeline
name: default
steps:
- name: build-testing-docker
image: my-docker-repo/my-docker-image:latest
when:
event: pull_request
and I'm trying to understand what are the possible configurations of the when
section. In was unable to find something in the official documentation. Where can I find the API of this part of the ymal?