From f9f1fb5004c2de6e47731b105e11bf817687b89a Mon Sep 17 00:00:00 2001 From: Rahix Date: Sat, 28 Aug 2021 20:15:29 +0200 Subject: [PATCH] ci: Only run for pushes to main/wip Fixes "internal" pull-requests leading to a duplicated workflow run. --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 60a7f86..1b4959d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,8 +1,11 @@ name: Continuous Integration on: - - push - - pull_request + push: + branches: + - main + - wip + pull_request: jobs: ci: -- 2.49.0