From 3cd47241b561b55940933e9d70a7b11a631d2967 Mon Sep 17 00:00:00 2001 From: Lucas De Marchi Date: Wed, 18 Mar 2020 22:40:22 -0700 Subject: [PATCH] ci: trigger on pull requests --- .github/workflows/ci-arch.yml | 6 +++++- .github/workflows/ci-centos.yml | 6 +++++- .github/workflows/ci-centos_epel.yml | 6 +++++- .github/workflows/ci-clear.yml | 6 +++++- .github/workflows/ci-debian.yml | 6 +++++- .github/workflows/ci-ubuntu.yml | 6 +++++- .github/workflows/ci-unit-test.yml | 10 +++++++++- 7 files changed, 39 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci-arch.yml b/.github/workflows/ci-arch.yml index 9e411a817..4bf0f51c5 100644 --- a/.github/workflows/ci-arch.yml +++ b/.github/workflows/ci-arch.yml @@ -2,7 +2,11 @@ name: CI Arch Linux on: push: - branches: [ master ] + branches: + - master + pull_request: + branches: + - master jobs: test: diff --git a/.github/workflows/ci-centos.yml b/.github/workflows/ci-centos.yml index b17495711..6d6bac961 100644 --- a/.github/workflows/ci-centos.yml +++ b/.github/workflows/ci-centos.yml @@ -2,7 +2,11 @@ name: CI CentOS on: push: - branches: [ master ] + branches: + - master + pull_request: + branches: + - master jobs: test: diff --git a/.github/workflows/ci-centos_epel.yml b/.github/workflows/ci-centos_epel.yml index 480f5824f..d21c41317 100644 --- a/.github/workflows/ci-centos_epel.yml +++ b/.github/workflows/ci-centos_epel.yml @@ -2,7 +2,11 @@ name: CI CentOS EPEL on: push: - branches: [ master ] + branches: + - master + pull_request: + branches: + - master jobs: test: diff --git a/.github/workflows/ci-clear.yml b/.github/workflows/ci-clear.yml index 4dae7deae..91fdb5ae5 100644 --- a/.github/workflows/ci-clear.yml +++ b/.github/workflows/ci-clear.yml @@ -2,7 +2,11 @@ name: CI ClearOS on: push: - branches: [ master ] + branches: + - master + pull_request: + branches: + - master jobs: test: diff --git a/.github/workflows/ci-debian.yml b/.github/workflows/ci-debian.yml index f41532e34..4304cb152 100644 --- a/.github/workflows/ci-debian.yml +++ b/.github/workflows/ci-debian.yml @@ -2,7 +2,11 @@ name: CI Debian on: push: - branches: [ master ] + branches: + - master + pull_request: + branches: + - master jobs: test: diff --git a/.github/workflows/ci-ubuntu.yml b/.github/workflows/ci-ubuntu.yml index c8076f005..a7715d7ac 100644 --- a/.github/workflows/ci-ubuntu.yml +++ b/.github/workflows/ci-ubuntu.yml @@ -2,7 +2,11 @@ name: CI Ubuntu on: push: - branches: [ master ] + branches: + - master + pull_request: + branches: + - master jobs: test: diff --git a/.github/workflows/ci-unit-test.yml b/.github/workflows/ci-unit-test.yml index 2de71f61a..f8c339ca0 100644 --- a/.github/workflows/ci-unit-test.yml +++ b/.github/workflows/ci-unit-test.yml @@ -1,5 +1,13 @@ name: CI Unit Test -on: [push] + +on: + push: + branches: + - master + pull_request: + branches: + - master + jobs: unit-test: runs-on: ubuntu-latest -- 2.47.2