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 b507601  ci: don't run full tests when we just change *.md (#5323)
b507601 is described below

commit b507601658e212ee315f414d2cab418c9be57aa3
Author: 罗泽轩 <[email protected]>
AuthorDate: Mon Oct 25 12:43:45 2021 +0800

    ci: don't run full tests when we just change *.md (#5323)
---
 .github/workflows/build.yml       | 2 ++
 .github/workflows/centos7-ci.yml  | 2 ++
 .github/workflows/chaos.yml       | 1 +
 .github/workflows/cli.yml         | 2 ++
 .github/workflows/code-lint.yml   | 1 +
 .github/workflows/fuzzing-ci.yaml | 2 ++
 6 files changed, 10 insertions(+)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 93597b6..16453f3 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -5,10 +5,12 @@ on:
     branches: [master, 'release/**']
     paths-ignore:
       - 'docs/**'
+      - '**/*.md'
   pull_request:
     branches: [master]
     paths-ignore:
       - 'docs/**'
+      - '**/*.md'
 
 concurrency:
   group: ${{ github.workflow }}-${{ github.ref == 'refs/heads/master' && 
github.run_number || github.ref }}
diff --git a/.github/workflows/centos7-ci.yml b/.github/workflows/centos7-ci.yml
index c3cd3a2..2f4ba8c 100644
--- a/.github/workflows/centos7-ci.yml
+++ b/.github/workflows/centos7-ci.yml
@@ -5,10 +5,12 @@ on:
     branches: [master, 'release/**']
     paths-ignore:
       - 'docs/**'
+      - '**/*.md'
   pull_request:
     branches: [master]
     paths-ignore:
       - 'docs/**'
+      - '**/*.md'
 
 concurrency:
   group: ${{ github.workflow }}-${{ github.ref == 'refs/heads/master' && 
github.run_number || github.ref }}
diff --git a/.github/workflows/chaos.yml b/.github/workflows/chaos.yml
index e5c4bf7..17e61de 100644
--- a/.github/workflows/chaos.yml
+++ b/.github/workflows/chaos.yml
@@ -6,6 +6,7 @@ on:
       - master
     paths-ignore:
       - 'docs/**'
+      - '**/*.md'
 
 concurrency:
   group: ${{ github.workflow }}-${{ github.ref == 'refs/heads/master' && 
github.run_number || github.ref }}
diff --git a/.github/workflows/cli.yml b/.github/workflows/cli.yml
index 7bd22ed..ae86097 100644
--- a/.github/workflows/cli.yml
+++ b/.github/workflows/cli.yml
@@ -5,10 +5,12 @@ on:
     branches: [master]
     paths-ignore:
       - 'docs/**'
+      - '**/*.md'
   pull_request:
     branches: [master]
     paths-ignore:
       - 'docs/**'
+      - '**/*.md'
 
 concurrency:
   group: ${{ github.workflow }}-${{ github.ref == 'refs/heads/master' && 
github.run_number || github.ref }}
diff --git a/.github/workflows/code-lint.yml b/.github/workflows/code-lint.yml
index fa8527c..230233d 100644
--- a/.github/workflows/code-lint.yml
+++ b/.github/workflows/code-lint.yml
@@ -5,6 +5,7 @@ on:
     branches: [master]
     paths-ignore:
       - 'docs/**'
+      - '**/*.md'
 
 jobs:
   lint:
diff --git a/.github/workflows/fuzzing-ci.yaml 
b/.github/workflows/fuzzing-ci.yaml
index 932ef18..adf2d0d 100644
--- a/.github/workflows/fuzzing-ci.yaml
+++ b/.github/workflows/fuzzing-ci.yaml
@@ -6,11 +6,13 @@ on:
       - master
     paths-ignore:
       - 'docs/**'
+      - '**/*.md'
   pull_request:
     branches:
       - master
     paths-ignore:
       - 'docs/**'
+      - '**/*.md'
 
 concurrency:
   group: ${{ github.workflow }}-${{ github.ref == 'refs/heads/master' && 
github.run_number || github.ref }}

Reply via email to