From b585fcc1f1cc9f6fde318af7cf7e58c9c003d584 Mon Sep 17 00:00:00 2001 From: Tim Crawford Date: Wed, 25 Jun 2025 11:22:20 -0600 Subject: [PATCH] ci: Restrict GHA to only master branch on push events CI will trigger duplicated runs for branches if they have a pull request open, so only run CI for push events to master. Signed-off-by: Tim Crawford --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ca2a626..64d78b9 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -4,8 +4,8 @@ name: CI on: push: - branches-ignore: - - 'wip/*' + branches: + - 'master' pull_request: env: