diff --git a/.drone.yml b/.drone.yml index fcc45b6b2..eb7cdf769 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,8 +1,18 @@ -pipeline: - documentation: - image: nextcloudci/documentation:documentation-9 - commands: - - npm install svgexport -g - - pip2 install -r requirements.txt - - make all -branches: [ master, stable* ] +kind: pipeline +name: documentation + +steps: +- name: documentation + image: nextcloudci/documentation:documentation-9 + commands: + - npm install svgexport -g + - pip2 install -r requirements.txt + - make all + +trigger: + branch: + - master + - stable* + event: + - pull_request + - push