From f471a1b9da4680c9da56ee5f7892e5c66cab0bf9 Mon Sep 17 00:00:00 2001 From: Wilmer Paulino Date: Mon, 17 Apr 2023 10:25:30 -0700 Subject: [PATCH] Ignore workflow runs on master branch This master branch is just an alias to the main branch for legacy reasons, so there's no need to run workflows on both branches. --- .github/workflows/build.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a08549c0..b00bf47f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,6 +1,12 @@ name: Continuous Integration Checks -on: [push, pull_request] +on: + push: + branches-ignore: + - master + pull_request: + branches-ignore: + - master jobs: build: -- 2.30.2