From 10ecc303c9ca73f3e0548a192875fd434d757f88 Mon Sep 17 00:00:00 2001 From: Alexandre Flament Date: Fri, 5 Mar 2021 11:54:45 +0100 Subject: [PATCH] Fix integration.yml Don't run twice the workflow on PR opened from the same repository. --- .github/workflows/integration.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 59eb4c56..4cbb930d 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -1,6 +1,10 @@ name: Integration -on: [push, pull_request] +on: + push: + branches: ["master"] + pull_request: + branches: ["master"] jobs: python: