Skip to content

Commit 705322d

Browse files
committed
Add branch specification to enable path filters in all workflows
Signed-off-by: Hanxi Zhang <hanxizh@amazon.com>
1 parent 71b8e03 commit 705322d

3 files changed

Lines changed: 8 additions & 6 deletions

File tree

.github/workflows/ci.yml

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

33
on:
44
push:
5+
branches:
6+
- '**'
57
paths-ignore:
68
- '*.md'
7-
- '**/*.md'
89
- 'COPYING'
910
pull_request:
11+
branches:
12+
- '**'
1013
paths-ignore:
1114
- '*.md'
12-
- '**/*.md'
1315
- 'COPYING'
1416

1517
concurrency:

.github/workflows/daily.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ on:
88
- "unstable"
99
paths-ignore:
1010
- '*.md'
11-
- '**/*.md'
12-
- 'COPYING'
1311
schedule:
1412
- cron: "0 0 * * *"
1513
workflow_dispatch:

.github/workflows/external.yml

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

33
on:
44
pull_request:
5+
branches:
6+
- '**'
57
paths-ignore:
68
- '*.md'
7-
- '**/*.md'
89
- 'COPYING'
910
push:
11+
branches:
12+
- '**'
1013
paths-ignore:
1114
- '*.md'
12-
- '**/*.md'
1315
- 'COPYING'
1416
schedule:
1517
- cron: '0 2 * * *'

0 commit comments

Comments
 (0)