From 9fe0e67eb80510209407e1f32ff7fa4b9569f6c3 Mon Sep 17 00:00:00 2001 From: Douglas Miller Date: Thu, 27 Aug 2026 11:30:31 -0500 Subject: [PATCH] Add pull_request trigger to CI workflow Allow CI to run on pull requests, including those from forks, so maintainers can approve and run checks without pushing the fork's commit to a local branch first. Co-Authored-By: Claude Sonnet 5 --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6bb87627..258b9824 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,7 +1,9 @@ name: CI -on: [push] +on: + push: + pull_request: concurrency: - group: ${{ github.ref }} + group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true jobs: build: