From 7b2cb64b1437fb285dc0155b174cf09c0d7cb3ec Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Sun, 9 Jun 2024 06:47:47 -0700 Subject: [PATCH] Only CI on PR --- .github/workflows/ci-js.yml | 4 +++- .github/workflows/ci-rust.yml | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-js.yml b/.github/workflows/ci-js.yml index 3a85cf5a..df1b9591 100644 --- a/.github/workflows/ci-js.yml +++ b/.github/workflows/ci-js.yml @@ -1,4 +1,6 @@ -on: [push] +on: + pull_request: + branches: [develop] name: CI (JS) diff --git a/.github/workflows/ci-rust.yml b/.github/workflows/ci-rust.yml index 6360265d..8415e7bf 100644 --- a/.github/workflows/ci-rust.yml +++ b/.github/workflows/ci-rust.yml @@ -1,5 +1,6 @@ on: - push: + pull_request: + branches: [develop] paths: - src-tauri/** - .github/workflows/**