Skip to content

Commit e1db42e

Browse files
authored
GH Actions: fix order of path filters for push and pull-request events (#12686)
1 parent cec8fc5 commit e1db42e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/aws-main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,28 +6,28 @@ on:
66
push:
77
paths:
88
- '**'
9+
- '!.github/**'
910
- '.github/actions/**'
1011
- '.github/workflows/aws-main.yml'
1112
- '.github/workflows/aws-tests.yml'
1213
- '!CODEOWNERS'
1314
- '!README.md'
1415
- '!.gitignore'
1516
- '!.git-blame-ignore-revs'
16-
- '!.github/**'
1717
- '!docs/**'
1818
branches:
1919
- master
2020
pull_request:
2121
paths:
2222
- '**'
23+
- '!.github/**'
2324
- '.github/actions/**'
2425
- '.github/workflows/aws-main.yml'
2526
- '.github/workflows/aws-tests.yml'
2627
- '!CODEOWNERS'
2728
- '!README.md'
2829
- '!.gitignore'
2930
- '!.git-blame-ignore-revs'
30-
- '!.github/**'
3131
- '!docs/**'
3232
workflow_dispatch:
3333
inputs:

0 commit comments

Comments
 (0)