Skip to content

Commit 17abff5

Browse files
committed
Use explicit file names instead of wildcards for path filters
Signed-off-by: Hanxi Zhang <hanxizh@amazon.com>
1 parent 983af01 commit 17abff5

3 files changed

Lines changed: 21 additions & 13 deletions

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,18 @@ name: CI
22

33
on:
44
push:
5-
branches:
6-
- '**'
75
paths-ignore:
8-
- '*.md'
6+
- 'README.md'
7+
- 'CONTRIBUTING.md'
8+
- 'SECURITY.md'
9+
- 'GOVERNANCE.md'
910
- 'COPYING'
1011
pull_request:
11-
branches:
12-
- '**'
1312
paths-ignore:
14-
- '*.md'
13+
- 'README.md'
14+
- 'CONTRIBUTING.md'
15+
- 'SECURITY.md'
16+
- 'GOVERNANCE.md'
1517
- 'COPYING'
1618

1719
concurrency:

.github/workflows/daily.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@ on:
77
- "[0-9].[0-9]"
88
- "unstable"
99
paths-ignore:
10-
- '*.md'
10+
- 'README.md'
11+
- 'CONTRIBUTING.md'
12+
- 'SECURITY.md'
13+
- 'GOVERNANCE.md'
14+
- 'COPYING'
1115
schedule:
1216
- cron: "0 0 * * *"
1317
workflow_dispatch:

.github/workflows/external.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,18 @@ name: External Server Tests
22

33
on:
44
pull_request:
5-
branches:
6-
- '**'
75
paths-ignore:
8-
- '*.md'
6+
- 'README.md'
7+
- 'CONTRIBUTING.md'
8+
- 'SECURITY.md'
9+
- 'GOVERNANCE.md'
910
- 'COPYING'
1011
push:
11-
branches:
12-
- '**'
1312
paths-ignore:
14-
- '*.md'
13+
- 'README.md'
14+
- 'CONTRIBUTING.md'
15+
- 'SECURITY.md'
16+
- 'GOVERNANCE.md'
1517
- 'COPYING'
1618
schedule:
1719
- cron: '0 2 * * *'

0 commit comments

Comments
 (0)