lmi-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lmi-commits] [lmi] master b6c65f74: Skip running CI builds for any path


From: Vadim Zeitlin
Subject: [lmi-commits] [lmi] master b6c65f74: Skip running CI builds for any paths under tabs directory
Date: Sat, 5 Mar 2022 08:02:47 -0500 (EST)

branch: master
commit b6c65f74fe1ba2e80515d580585322048cbb1958
Author: Vadim Zeitlin <vadim@tt-solutions.com>
Commit: Vadim Zeitlin <vadim@tt-solutions.com>

    Skip running CI builds for any paths under tabs directory
    
    Use "**" in the paths ignore expression to ignore changes to the files
    anywhere under "tabs" (and also, for consistency, "gwc" and "vz")
    directory and not just directly in this directory.
    
    This would have avoided running the CI builds needlessly for the parent
    commit, for example.
---
 .github/workflows/ci.yml | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index e386d484..a2102924 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -6,17 +6,17 @@ on:
     branches:
       - master
     paths-ignore:
-      - 'gwc/*'
-      - 'tabs/*'
-      - 'vz/*'
+      - 'gwc/**'
+      - 'tabs/**'
+      - 'vz/**'
       - 'lmi_setup*.sh'
   pull_request:
     branches:
       - master
     paths-ignore:
-      - 'gwc/*'
-      - 'tabs/*'
-      - 'vz/*'
+      - 'gwc/**'
+      - 'tabs/**'
+      - 'vz/**'
       - 'lmi_setup*.sh'
 
 jobs:



reply via email to

[Prev in Thread] Current Thread [Next in Thread]