From 36c30f10886298f6bb802add3493d85e8cae31dd Mon Sep 17 00:00:00 2001 From: project516 <138796702+Project516@users.noreply.github.com> Date: Wed, 18 Feb 2026 17:19:58 -0600 Subject: [PATCH] Run CI on photon branch as well as main --- .github/workflows/main.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d36bb8f..5e35649 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,9 +6,11 @@ name: CI # events but only for the main branch. on: push: - branches: [ main ] + # This will run when a push to main or photon is made + branches: [ "main", "photon" ] + # This will run when a pull request to main or photon is created pull_request: - branches: [ main ] + branches: [ "main", "photon" ] # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: @@ -35,4 +37,4 @@ jobs: # Runs a single command using the runners shell - name: Compile and run tests on robot code - run: ./gradlew build \ No newline at end of file + run: ./gradlew build