From 5202aaea91fca533a86f422ebb906dc30c291489 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20J=C3=BClg?= Date: Tue, 24 Mar 2026 18:22:30 +0200 Subject: [PATCH] ci: build on every pr Added support for pull requests targeting the main branch. --- .github/workflows/build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 054f8e3..309470b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,10 +1,13 @@ - name: Build Unity Project on: push: branches: - main + # This section ensures the build runs for PRs targeting the main branch + pull_request: + branches: + - main workflow_dispatch: jobs: @@ -51,4 +54,3 @@ jobs: with: name: IRIS-Meta-Quest3-Android-Build path: Builds/Android/IRIS-Meta-Quest3.apk -