From 6ed4319e58726907ab9c711086d786e3ba68072b Mon Sep 17 00:00:00 2001 From: Nick Slowinski Date: Mon, 26 Jun 2023 19:05:22 +0200 Subject: [PATCH] disable builds when renovate pushes changes --- .drone.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.drone.yml b/.drone.yml index 5dd7d71..9f1e759 100644 --- a/.drone.yml +++ b/.drone.yml @@ -19,6 +19,10 @@ steps: - mkdir ~/docs && cd ~/docs - git clone $DRONE_REPO_LINK . - git checkout $DRONE_COMMIT + when: + branch: + exclude: + - renovate/* - name: build image: registry.access.redhat.com/ubi9/python-311:1-12 volumes: @@ -29,6 +33,10 @@ steps: - pip install --upgrade pip - pip install -r requirements.txt - mkdocs build + when: + branch: + exclude: + - renovate/* volumes: - name: cache