This is an automated email from the ASF dual-hosted git repository.
xiaofeng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/brpc.git
The following commit(s) were added to refs/heads/master by this push:
new 1bd072e5 Update github workflows to skip builds for markdown-file-only
changes (#2175)
1bd072e5 is described below
commit 1bd072e5de9addcae1a9df6fa48113f26a0cd24a
Author: Nancy Ngo <[email protected]>
AuthorDate: Thu Mar 23 00:21:45 2023 -0400
Update github workflows to skip builds for markdown-file-only changes
(#2175)
---
.github/workflows/ci-linux.yml | 4 ++++
.github/workflows/ci-macos.yml | 4 ++++
2 files changed, 8 insertions(+)
diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-linux.yml
index eca498fb..09f0d3cb 100644
--- a/.github/workflows/ci-linux.yml
+++ b/.github/workflows/ci-linux.yml
@@ -3,8 +3,12 @@ name: Build and Test on Linux
on:
push:
branches: [ master ]
+ paths-ignore:
+ - '**.md'
pull_request:
branches: [ master ]
+ paths-ignore:
+ - '**.md'
env:
proc_num: $(nproc)
diff --git a/.github/workflows/ci-macos.yml b/.github/workflows/ci-macos.yml
index 19692a78..c620fe7d 100644
--- a/.github/workflows/ci-macos.yml
+++ b/.github/workflows/ci-macos.yml
@@ -3,8 +3,12 @@ name: Build on Macos
on:
push:
branches: [ master ]
+ paths-ignore:
+ - '**.md'
pull_request:
branches: [ master ]
+ paths-ignore:
+ - '**.md'
env:
proc_num: $(sysctl -n hw.logicalcpu)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]