From f131da845e9d32a2a512909157b8db8d05993d1e Mon Sep 17 00:00:00 2001 From: Bubka <858858+Bubka@users.noreply.github.com> Date: Thu, 31 Mar 2022 10:04:44 +0200 Subject: [PATCH] Limit GitHub CI workflow to the master branch --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5b6268db..667d8f5a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,8 @@ name: CI on: push: + branches: + - master paths: - .github/workflows/ci.yml - app/** @@ -22,6 +24,8 @@ on: - phpunit.xml - server.php pull_request: + branches: + - master paths: - .github/workflows/ci.yml - app/**