From b7fd116bd803016ff20a9b31e2c0a29f84bc345e Mon Sep 17 00:00:00 2001 From: Deluan Date: Sat, 25 Apr 2020 12:06:05 -0400 Subject: [PATCH] Only triggers the pipeline on pushes to master and PRs --- .github/workflows/{release.yml => pipeline.yml} | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) rename .github/workflows/{release.yml => pipeline.yml} (97%) diff --git a/.github/workflows/release.yml b/.github/workflows/pipeline.yml similarity index 97% rename from .github/workflows/release.yml rename to .github/workflows/pipeline.yml index cd298d7cb..c860028c6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/pipeline.yml @@ -1,5 +1,10 @@ name: Pipeline -on: push + push: + branches: + - master + pull_request: + branches: + - master jobs: go: name: Test Server on ${{ matrix.os }}