From: Lucas De Marchi Date: Thu, 19 Mar 2020 05:40:22 +0000 (-0700) Subject: ci: trigger on pull requests X-Git-Tag: v6~91^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F408%2Fhead;p=thirdparty%2Fmkosi.git ci: trigger on pull requests --- 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