From 510f4cc0551a68aa70c80c1b13d7dfcbafc2c6e2 Mon Sep 17 00:00:00 2001 From: Pavan Kumar Sunkara Date: Fri, 10 Apr 2020 19:50:12 +0200 Subject: [PATCH] Don't run actions on some events push(master) is not run because they would be run on staging anyway. pull_request(staging, trying) are not run because pull requests shouldn't be made to them --- .github/workflows/linux.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index f6603911731..9e61067c6b4 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -1,9 +1,9 @@ name: Linux on: push: - branches: [master, staging, trying] + branches: [staging, trying] pull_request: - branches: [master, staging, trying] + branches: [master] types: [opened, reopened, synchronize] jobs: test-release: