From 7d3cfc0fe5a36539cd3b860469f98240e53c4314 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Hrdli=C4=8Dka?= Date: Fri, 18 Feb 2022 22:03:17 +0100 Subject: [PATCH] Only run actions for the master branch --- .github/workflows/cmake.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 4bc84e91c..1539212f5 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -3,6 +3,9 @@ name: CMake on: push: + branches: + - master + paths: - src/** - "**/CMakeLists.txt" @@ -12,6 +15,9 @@ on: - "!**/Makefile*" pull_request: + branches: + - master + paths: - src/** - "**/CMakeLists.txt"