From f74e8c8ba1b8d94b3fab00fecb0386942cc96024 Mon Sep 17 00:00:00 2001 From: Harald Kuhr Date: Wed, 24 May 2023 18:48:15 +0200 Subject: [PATCH] Stop dependabot causing double workflow runs. --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 740a6825..8f4328b1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,12 @@ name: CI -on: [ push, pull_request ] +on: + push: + branches: + - '**' + - '!dependabot/**' + pull_request: + branches: [ 'master' ] permissions: read-all