From 3ecb3e4bc8c2d0aea5ec8c3843721db39b0d2867 Mon Sep 17 00:00:00 2001 From: Tyler Wilding Date: Tue, 6 Jun 2023 19:05:35 -0500 Subject: [PATCH] ci: don't run CI builds on non `master` branch pushes (#2703) --- .github/workflows/build-matrix.yaml | 4 ++-- .github/workflows/linting.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-matrix.yaml b/.github/workflows/build-matrix.yaml index c65d4ddb10..dc0e155315 100644 --- a/.github/workflows/build-matrix.yaml +++ b/.github/workflows/build-matrix.yaml @@ -2,8 +2,8 @@ name: Build on: push: - branches-ignore: - - "l10n_master" + branches: + - master pull_request: branches: - master diff --git a/.github/workflows/linting.yaml b/.github/workflows/linting.yaml index f2b5576109..1ea2f4d614 100644 --- a/.github/workflows/linting.yaml +++ b/.github/workflows/linting.yaml @@ -3,7 +3,7 @@ name: Lint on: push: branches: - - '*' + - master pull_request: branches: - master