From 2fe0b79f3a948de6ac7760e0feed3e250e062511 Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Wed, 25 Mar 2020 17:18:18 +0000 Subject: [PATCH] Enabled CI on Renovate branches no issue - enables CI on Renovate branches - puts in a check to avoid CI for pull requests from Renovate to stop double builds --- .github/workflows/test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4f44efe53a..6b4e0201b3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -5,9 +5,11 @@ on: branches: - master - 2.x + - 'renovate/*' jobs: test: runs-on: ubuntu-latest + if: github.event_name == 'push' || (github.event_name == 'pull_request' && !startsWith(github.head_ref, 'renovate/')) strategy: matrix: node: [ 10, 12 ]