Browse Source

Fix integration.yml

Don't run twice the workflow on PR opened from the same repository.
Alexandre Flament 4 years ago
parent
commit
10ecc303c9
1 changed files with 5 additions and 1 deletions
  1. 5 1
      .github/workflows/integration.yml

+ 5 - 1
.github/workflows/integration.yml

@@ -1,6 +1,10 @@
 name: Integration
 
-on: [push, pull_request]
+on:
+  push:
+    branches: ["master"]
+  pull_request:
+    branches: ["master"]
 
 jobs:
   python: