From 5a37ae433356ace0ab0dbdf0d6be310a13ec2bf1 Mon Sep 17 00:00:00 2001 From: Vladimir Reznichenko Date: Fri, 26 Jul 2024 11:41:10 +0200 Subject: [PATCH] CI: tweaks around 'Build Live Branch' job start conditions. (#50005) The PR scope was reduced to filtering out the `.github` folder from target changes, except the workflow itself. It should reduce the amount of the job runs when we are working with GitHub actions related files. --- .github/workflows/pr-build-live-branch.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/pr-build-live-branch.yml b/.github/workflows/pr-build-live-branch.yml index e2d2f29f8ec..42c39a49c93 100644 --- a/.github/workflows/pr-build-live-branch.yml +++ b/.github/workflows/pr-build-live-branch.yml @@ -8,6 +8,8 @@ on: - '**/changelog/**' - '**/tests/**' - '**/*.md' + - '.github/**' + - '!.github/workflows/pr-build-live-branch.yml' concurrency: # Cancel concurrent jobs on pull_request but not push, by including the run_id in the concurrency group for the latter.