From c9eff91ef1c7af02e68a4897c476dab0afbfff77 Mon Sep 17 00:00:00 2001 From: Aiden Grossman Date: Wed, 6 Aug 2025 15:49:17 +0000 Subject: [PATCH] [CI][Github] Only run CI Checks Workflow on Push for Main Currently the check-ci workflow runs on the push event as well regardless of the branch which means the workflow runs twice on stacked PRs. Not a big deal, but a bit weird to see the same workflow running twice in a PR. --- .github/workflows/check-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/check-ci.yml b/.github/workflows/check-ci.yml index befea2093f90..ec2615dcf20d 100644 --- a/.github/workflows/check-ci.yml +++ b/.github/workflows/check-ci.yml @@ -5,6 +5,8 @@ permissions: on: push: + branches: + - main paths: - '.ci/**' - '.github/workflows/check-ci.yml'