Skip to content

Commit 09396bc

Browse files
authored
Merge pull request #1 from Cronyet/patch-2
CI/CD will ignore markdown files and folders named with `.` start.
2 parents 9489ffd + 98c94b4 commit 09396bc

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,17 @@ name: Build
22

33
on:
44
push:
5-
branches: [ "main" ]
5+
branches:
6+
- main
7+
paths-ignore:
8+
- ".*/**"
9+
- "**/*.md"
610
pull_request:
7-
branches: [ "main" ]
11+
branches:
12+
- main
13+
paths-ignore:
14+
- ".*/**"
15+
- "**/*.md"
816

917
workflow_dispatch:
1018

0 commit comments

Comments
 (0)