From 3209b3010bed4b431c9440739b25328fcd78d399 Mon Sep 17 00:00:00 2001 From: Philipp Winter Date: Mon, 31 Aug 2026 11:36:13 -0500 Subject: [PATCH] Don't build executable twice. So far, the `test_build` job would run both on the `pull_request` event and the `push` event. This PR makes the job only trigger if we pushed to master, so we don't build unnecessarily. --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c372fcf001..ebb45673bc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,6 +3,8 @@ on: schedule: - cron: '21 */2 * * *' push: + branches: + - master pull_request: concurrency: