From e3df515983a48bfba691712782c23708a0df3f69 Mon Sep 17 00:00:00 2001 From: Chris Zetter <253059100+zetter-rpf@users.noreply.github.com> Date: Fri, 27 Feb 2026 12:30:07 +0000 Subject: [PATCH] Don't run tests on branches This causes the checks to run on branches and then again on PRs --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8bd26a78..eb8a5b7e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,8 +1,12 @@ name: CI on: - pull_request: push: + branches: + - main + pull_request: + branches: + - "**" permissions: contents: read