From 5998f1497a87e64194ee31f48918881f14a7d868 Mon Sep 17 00:00:00 2001 From: travisladuke Date: Mon, 3 Mar 2025 10:00:19 -0800 Subject: [PATCH] Run CI on pull requests If the PR is from an external repo, the action won't run without approval. right now we can't run the actions on external PRs. --- .github/workflows/build.yml | 5 ++++- .github/workflows/validate.yml | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b9e1f4904..fee6dd338 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,4 +1,7 @@ -on: [ push ] +on: + pull_request: + push: + workflow_dispatch: jobs: build_ubuntu: diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 76c1b7165..fbffcadfc 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -1,4 +1,5 @@ on: + pull_request: push: workflow_dispatch: