summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYasith Vidanaarachchi <yasith@google.com>2023-11-22 11:50:22 -0500
committerGitHub <noreply@github.com>2023-11-22 11:50:22 -0500
commit45bce370b6c465adc7e2dd77ad3bd8b6929146b6 (patch)
tree86f8c82354bf58fcbd08868c3b8109e6e48e81f1
parent3ae0900e248937bd7439b3d3c22360f2a7265153 (diff)
downloadjetpack-camera-app-45bce370b6c465adc7e2dd77ad3bd8b6929146b6.tar.gz
Update CI to run on pull requests instead of push (#82)
Some of our CI tests are not triggering when there's a new pull request from outside of the repository. This should be fixed by changing the event it's triggered on to `pull_request` instead of `push`
-rw-r--r--.github/workflows/PullRequestWorkflow.yaml (renamed from .github/workflows/PushWorkflow.yaml)2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/PushWorkflow.yaml b/.github/workflows/PullRequestWorkflow.yaml
index 06c8921..ea32c21 100644
--- a/.github/workflows/PushWorkflow.yaml
+++ b/.github/workflows/PullRequestWorkflow.yaml
@@ -1,6 +1,6 @@
name: Presubmit
-on: [push]
+on: [pull_request]
concurrency:
group: build-${{ github.ref }}