We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 767140a commit 1ea5becCopy full SHA for 1ea5bec
1 file changed
.github/workflows/ci.yml
@@ -6,8 +6,20 @@ name: CI
6
on:
7
push:
8
branches: [ main ]
9
+ # 纯文档/资源改动不影响构建产物,跳过 CI 省时间(public 仓库虽不扣额度,但省 11 分钟等待)。
10
+ # 注意:只要本次 push 含任一非忽略路径的改动,CI 仍会触发。
11
+ paths-ignore:
12
+ - '**.md'
13
+ - 'docs/**'
14
+ - 'LICENSE'
15
+ - '.gitignore'
16
pull_request:
17
18
19
20
21
22
23
24
# 同分支新提交到来时取消正在跑的旧 run,省 CI 额度。
25
concurrency:
0 commit comments