You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemds.apache.org by ja...@apache.org on 2021/10/30 18:30:19 UTC

[systemds] branch master updated: [SYSTEMDS-3190] Do not run workflow for empty checks (#1426)

This is an automated email from the ASF dual-hosted git repository.

janardhan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/systemds.git


The following commit(s) were added to refs/heads/master by this push:
     new 30062f4  [SYSTEMDS-3190] Do not run workflow for empty checks (#1426)
30062f4 is described below

commit 30062f4a78e9e6f7a17c98ef8ff6e3c017291a66
Author: Janardhan Pulivarthi <j1...@protonmail.com>
AuthorDate: Sun Oct 31 00:00:10 2021 +0530

    [SYSTEMDS-3190] Do not run workflow for empty checks (#1426)
    
    * ignored paths are
       - 'docs/**'
       - '*.md'
       - '*.html'
       - 'src/main/python/docs/**'
       - 'dev/**'
    
    --
    * https://s.apache.org/systemds-3190-mail-discussion
    * https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#example-ignoring-paths
---
 .github/workflows/applicationTests.yml |  9 +++++++++
 .github/workflows/build.yml            | 10 ++++++++++
 .github/workflows/componentTests.yml   |  9 +++++++++
 .github/workflows/documentation.yml    |  7 +++++--
 .github/workflows/functionsTests.yml   |  9 +++++++++
 .github/workflows/python.yml           |  9 +++++++++
 6 files changed, 51 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/applicationTests.yml b/.github/workflows/applicationTests.yml
index f7c3ae2..ddcb85e 100644
--- a/.github/workflows/applicationTests.yml
+++ b/.github/workflows/applicationTests.yml
@@ -23,12 +23,21 @@ name: Application Test
 
 on:
   push:
+    paths-ignore:
+      - 'docs/**'
+      - '*.md'
+      - '*.html'
+      - 'src/main/python/docs/**'
+      - 'dev/**'
     branches:
       - master
   pull_request:
     paths-ignore:
       - 'docs/**'
       - '*.md'
+      - '*.html'
+      - 'src/main/python/docs/**'
+      - 'dev/**'
     branches:
       - master
 
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 85255cc..4c6882b 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -23,14 +23,24 @@ name: Build
 
 on:
   push:
+    paths-ignore:
+      - 'docs/**'
+      - '*.md'
+      - '*.html'
+      - 'src/main/python/docs/**'
+      - 'dev/**'
     branches:
       - master
   pull_request:
     paths-ignore:
       - 'docs/**'
       - '*.md'
+      - '*.html'
+      - 'src/main/python/docs/**'
+      - 'dev/**'
     branches:
       - master
+
 jobs:
   build:
     runs-on: ${{ matrix.os }}
diff --git a/.github/workflows/componentTests.yml b/.github/workflows/componentTests.yml
index 25a49c0..b729d49 100644
--- a/.github/workflows/componentTests.yml
+++ b/.github/workflows/componentTests.yml
@@ -23,12 +23,21 @@ name: Component Test
 
 on:
   push:
+    paths-ignore:
+      - 'docs/**'
+      - '*.md'
+      - '*.html'
+      - 'src/main/python/docs/**'
+      - 'dev/**'
     branches:
       - master
   pull_request:
     paths-ignore:
       - 'docs/**'
       - '*.md'
+      - '*.html'
+      - 'src/main/python/docs/**'
+      - 'dev/**'
     branches:
       - master
 
diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml
index e38c69e..81ca26a 100644
--- a/.github/workflows/documentation.yml
+++ b/.github/workflows/documentation.yml
@@ -23,12 +23,15 @@ name: Documentation
 
 on:
   push:
+    paths-ignore:
+      - '*.html'
+      - 'dev/**'
     branches:
       - master
   pull_request:
     paths-ignore:
-      - 'docs/**'
-      - '*.md'
+      - '*.html'
+      - 'dev/**'
     branches:
       - master
 
diff --git a/.github/workflows/functionsTests.yml b/.github/workflows/functionsTests.yml
index 39d9182..5838d7e 100644
--- a/.github/workflows/functionsTests.yml
+++ b/.github/workflows/functionsTests.yml
@@ -23,12 +23,21 @@ name: Function Test
 
 on:
   push:
+    paths-ignore:
+      - 'docs/**'
+      - '*.md'
+      - '*.html'
+      - 'src/main/python/docs/**'
+      - 'dev/**'
     branches:
       - master
   pull_request:
     paths-ignore:
       - 'docs/**'
       - '*.md'
+      - '*.html'
+      - 'src/main/python/docs/**'
+      - 'dev/**'
     branches:
       - master
 
diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml
index 42e5651..3ee42c3 100644
--- a/.github/workflows/python.yml
+++ b/.github/workflows/python.yml
@@ -23,12 +23,21 @@ name: Python Test
 
 on:
   push:
+    paths-ignore:
+      - 'docs/**'
+      - '*.md'
+      - '*.html'
+      - 'src/main/python/docs/**'
+      - 'dev/**'
     branches:
       - master
   pull_request:
     paths-ignore:
       - 'docs/**'
       - '*.md'
+      - '*.html'
+      - 'src/main/python/docs/**'
+      - 'dev/**'
     branches:
       - master