From 4957e02a9b26090e5384aa317f3fb9b737a89276 Mon Sep 17 00:00:00 2001 From: 3alpha <15694175+3alpha@users.noreply.github.com> Date: Thu, 9 Jul 2026 11:46:02 +0200 Subject: [PATCH] ci: skip build.yml on default branch pushes `build.yml` triggers on `push` and `workflow_dispatch`. The reusable `dappnode-build-hash.yml` SDK already auto-detects pushes to the default branch and runs a no-op test build (no IPFS pin, no comment), so the workflow run is wasted CI on every merge. Add `branches-ignore: ["master"]` to the push trigger so the workflow doesn't even start on default-branch pushes. `workflow_dispatch` and pushes to other branches (e.g. tropibot bump branches) still trigger it as before. --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f5ec9ab..1d472b8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,6 +3,8 @@ name: Build on: workflow_dispatch: push: + branches-ignore: + - "master" paths-ignore: ["README.md"] jobs: