You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@paimon.apache.org by lz...@apache.org on 2023/03/23 08:39:36 UTC

[incubator-paimon] branch master updated: [build] Skip code CI tests if the PR only contains docs change (#695)

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

lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-paimon.git


The following commit(s) were added to refs/heads/master by this push:
     new c32f15b86 [build] Skip code CI tests if the PR only contains docs change (#695)
c32f15b86 is described below

commit c32f15b8686e52c61b1dfd54d1305e7d8a20894b
Author: Kerwin <37...@users.noreply.github.com>
AuthorDate: Thu Mar 23 16:39:29 2023 +0800

    [build] Skip code CI tests if the PR only contains docs change (#695)
---
 .github/workflows/e2e-tests-1.14.yml | 7 ++++++-
 .github/workflows/e2e-tests-1.15.yml | 7 ++++++-
 .github/workflows/e2e-tests-1.16.yml | 7 ++++++-
 .github/workflows/utitcase-flink.yml | 7 ++++++-
 .github/workflows/utitcase.yml       | 7 ++++++-
 5 files changed, 30 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/e2e-tests-1.14.yml b/.github/workflows/e2e-tests-1.14.yml
index 653d4a076..62631a028 100644
--- a/.github/workflows/e2e-tests-1.14.yml
+++ b/.github/workflows/e2e-tests-1.14.yml
@@ -18,7 +18,12 @@
 
 name: End to End Tests Flink 1.14
 
-on: [push, pull_request]
+on:
+  push:
+  pull_request:
+    paths-ignore:
+      - 'docs/**'
+      - '**/*.md'
 
 jobs:
   build:
diff --git a/.github/workflows/e2e-tests-1.15.yml b/.github/workflows/e2e-tests-1.15.yml
index e1f830d7a..bf28562d9 100644
--- a/.github/workflows/e2e-tests-1.15.yml
+++ b/.github/workflows/e2e-tests-1.15.yml
@@ -18,7 +18,12 @@
 
 name: End to End Tests Flink 1.15
 
-on: [push, pull_request]
+on:
+  push:
+  pull_request:
+    paths-ignore:
+      - 'docs/**'
+      - '**/*.md'
 
 jobs:
   build:
diff --git a/.github/workflows/e2e-tests-1.16.yml b/.github/workflows/e2e-tests-1.16.yml
index 091a092f5..016942839 100644
--- a/.github/workflows/e2e-tests-1.16.yml
+++ b/.github/workflows/e2e-tests-1.16.yml
@@ -18,7 +18,12 @@
 
 name: End to End Tests Flink 1.16
 
-on: [push, pull_request]
+on:
+  push:
+  pull_request:
+    paths-ignore:
+      - 'docs/**'
+      - '**/*.md'
 
 jobs:
   build:
diff --git a/.github/workflows/utitcase-flink.yml b/.github/workflows/utitcase-flink.yml
index 148c4fc43..0998bfc17 100644
--- a/.github/workflows/utitcase-flink.yml
+++ b/.github/workflows/utitcase-flink.yml
@@ -18,7 +18,12 @@
 
 name: UTCase and ITCase Flink
 
-on: [push, pull_request]
+on:
+  push:
+  pull_request:
+    paths-ignore:
+      - 'docs/**'
+      - '**/*.md'
 
 jobs:
   build:
diff --git a/.github/workflows/utitcase.yml b/.github/workflows/utitcase.yml
index 2587e302e..3de037037 100644
--- a/.github/workflows/utitcase.yml
+++ b/.github/workflows/utitcase.yml
@@ -18,7 +18,12 @@
 
 name: UTCase and ITCase Non Flink
 
-on: [push, pull_request]
+on:
+  push:
+  pull_request:
+    paths-ignore:
+      - 'docs/**'
+      - '**/*.md'
 
 jobs:
   build: