summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorAlexandre Flament <alex@al-f.net>2021-03-05 11:54:45 +0100
committerGitHub <noreply@github.com>2021-03-05 11:54:45 +0100
commit10ecc303c9ca73f3e0548a192875fd434d757f88 (patch)
treee542df0a0fa8e096e03f5bb0640ee35276bbad85 /.github
parent245f8626dd92f82cdc03219ee3f7488ae938c864 (diff)
Fix integration.yml
Don't run twice the workflow on PR opened from the same repository.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/integration.yml6
1 files changed, 5 insertions, 1 deletions
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: