From 8cbf333ee76fd0732eaf507f0dc3e6b03b355acc Mon Sep 17 00:00:00 2001 From: Sam Tran Date: Sun, 6 Oct 2024 17:54:49 -0700 Subject: [PATCH] Disable verification build step for PRs --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c3eb77d..cbded9b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -82,6 +82,8 @@ jobs: # Run plugin structure verification along with IntelliJ Plugin Verifier verify: name: Verify plugin + # This is pretty slow and doesn't really need to run for PRs + if: github.event_name != 'pull_request' needs: [ build ] runs-on: ubuntu-latest steps: