From c89723f6f607d48d1a9bdffc0f102981b762e9a9 Mon Sep 17 00:00:00 2001 From: Douglas Miller Date: Thu, 27 Aug 2026 11:30:30 -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 44b1276..16651c2 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: