diff options
author | Alexandre Flament <alex@al-f.net> | 2021-03-05 11:54:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-05 11:54:45 +0100 |
commit | 10ecc303c9ca73f3e0548a192875fd434d757f88 (patch) | |
tree | e542df0a0fa8e096e03f5bb0640ee35276bbad85 /.github | |
parent | 245f8626dd92f82cdc03219ee3f7488ae938c864 (diff) | |
download | searxng-10ecc303c9ca73f3e0548a192875fd434d757f88.tar.gz searxng-10ecc303c9ca73f3e0548a192875fd434d757f88.zip |
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.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 59eb4c560..4cbb930dc 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: |