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

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


The following commit(s) were added to refs/heads/master by this push:
     new dbd86f2  ci: bypass test if the change is doc only (#3950)
dbd86f2 is described below

commit dbd86f2ad4b8430185a0bdb4187ea52e9cd8abeb
Author: 罗泽轩 <[email protected]>
AuthorDate: Fri Apr 2 15:26:24 2021 +0800

    ci: bypass test if the change is doc only (#3950)
    
    Signed-off-by: spacewander <[email protected]>
---
 .github/workflows/build.yml       | 4 ++++
 .github/workflows/centos7-ci.yml  | 4 ++++
 .github/workflows/chaos.yml       | 7 ++++++-
 .github/workflows/fuzzing-ci.yaml | 4 ++++
 4 files changed, 18 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index f577ab8..44bddf9 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -3,8 +3,12 @@ name: CI
 on:
   push:
     branches: [master, 'release/**']
+    paths-ignore:
+      - 'docs/**'
   pull_request:
     branches: [master]
+    paths-ignore:
+      - 'docs/**'
 
 jobs:
   build:
diff --git a/.github/workflows/centos7-ci.yml b/.github/workflows/centos7-ci.yml
index 4f99fd3..3dc5d96 100644
--- a/.github/workflows/centos7-ci.yml
+++ b/.github/workflows/centos7-ci.yml
@@ -3,8 +3,12 @@ name: CI Centos7
 on:
   push:
     branches: [master, 'release/**']
+    paths-ignore:
+      - 'docs/**'
   pull_request:
     branches: [master]
+    paths-ignore:
+      - 'docs/**'
 
 jobs:
   test_apisix:
diff --git a/.github/workflows/chaos.yml b/.github/workflows/chaos.yml
index e4447b2..867160b 100644
--- a/.github/workflows/chaos.yml
+++ b/.github/workflows/chaos.yml
@@ -1,6 +1,11 @@
 name: Chaos Test
 
-on: [pull_request]
+on:
+  pull_request:
+    branches:
+      - master
+    paths-ignore:
+      - 'docs/**'
 
 jobs:
   chaos-test:
diff --git a/.github/workflows/fuzzing-ci.yaml 
b/.github/workflows/fuzzing-ci.yaml
index 58c2b37..9da05af 100644
--- a/.github/workflows/fuzzing-ci.yaml
+++ b/.github/workflows/fuzzing-ci.yaml
@@ -4,9 +4,13 @@ on:
   push:
     branches:
       - master
+    paths-ignore:
+      - 'docs/**'
   pull_request:
     branches:
       - master
+    paths-ignore:
+      - 'docs/**'
 
 jobs:
   test_apisix:

Reply via email to