From 23da06182e84493989e7e84278a11686c92191fa Mon Sep 17 00:00:00 2001 From: Tamal Saha Date: Sat, 2 May 2020 22:08:06 -0700 Subject: [PATCH] Trigger the workflow on push or pull request Signed-off-by: Tamal Saha --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a525926c4..65adc74d8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,11 +1,12 @@ name: CI on: + pull_request: + branches: + - '*' push: - branches-ignore: - - 'release-*' - tags-ignore: - - '*.*' + branches: + - master jobs: @@ -20,8 +21,7 @@ jobs: go-version: 1.14 id: go - - name: Check out code into the Go module directory - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: Set up Docker Buildx id: buildx