From f8f94fa13a8fedcfd22b254e51e6950ac3cf85db Mon Sep 17 00:00:00 2001 From: Ron Rennick Date: Tue, 26 Mar 2024 05:35:22 -0300 Subject: [PATCH] skip PR live build on non-plugin changes (#45891) Co-authored-by: Ron Rennick --- .github/workflows/pr-build-live-branch.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr-build-live-branch.yml b/.github/workflows/pr-build-live-branch.yml index cb9df1a107e..005e83659a4 100644 --- a/.github/workflows/pr-build-live-branch.yml +++ b/.github/workflows/pr-build-live-branch.yml @@ -1,8 +1,14 @@ -name: Build Live Branch +name: Build PR Live Branch on: pull_request: paths-ignore: + - '.github/**' + - 'docs/**' + - 'packages/php/**' + - 'tools/**' - '**/changelog/**' + - '**/tests/**' + - '**/*.md' concurrency: # Cancel concurrent jobs on pull_request but not push, by including the run_id in the concurrency group for the latter.