From d4f56d0d8d07dd45600eca76551c011e290e4520 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Wed, 27 Nov 2024 22:39:56 +0100 Subject: Only run the CI tests once Limit the push events to the master branch, otherwise they will be running twice on every feature branch and PR. --- .github/workflows/build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 909a53f5..86d8e3af 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,6 +1,9 @@ name: CI -on: [push, pull_request] +on: + pull_request: + push: + branches: master jobs: ubuntu-latest-html-tests: -- cgit v1.2.3