From: Ran Benita Date: Fri, 16 Dec 2022 19:36:13 +0000 (+0200) Subject: ci: don't run linux on push to non-master branches X-Git-Tag: upstream/1.5.0~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7428eb6e8bc307709e803763119731d81a77d1bc;p=platform%2Fupstream%2Flibxkbcommon.git ci: don't run linux on push to non-master branches It's redundant with the pull request run. Signed-off-by: Ran Benita --- diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 6085b4f..be22915 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -1,6 +1,10 @@ name: linux -on: [push, pull_request] +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] # Set permissions at the job level. permissions: {}