aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRodrigo Arias Mallo <rodarima@gmail.com>2024-11-27 22:39:56 +0100
committerRodrigo Arias Mallo <rodarima@gmail.com>2024-11-27 22:39:56 +0100
commitd4f56d0d8d07dd45600eca76551c011e290e4520 (patch)
tree3a0cb21e3086e14200121545df6062b52b3f049d
parentf78fddd24558d5ca3b994a46b9747b259aa1e5dd (diff)
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.
-rw-r--r--.github/workflows/build.yml5
1 files changed, 4 insertions, 1 deletions
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: