Skip to content

Commit a18cf33

Browse files
committed
[skip ci] Fix paths-ignore glob pattern
* does not work for nested files.
1 parent 6db9551 commit a18cf33

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/push.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Push
22
on:
33
push:
44
paths-ignore:
5-
- docs/*
5+
- docs/**
66
- NEWS
77
- UPGRADING
88
- UPGRADING.INTERNALS
@@ -11,8 +11,8 @@ on:
1111
- CODING_STANDARDS.md
1212
- .cirrus.yml
1313
- .travis.yml
14-
- travis/*
15-
- .circleci/*
14+
- travis/**
15+
- .circleci/**
1616
branches:
1717
- PHP-7.4
1818
- PHP-8.0
@@ -21,7 +21,7 @@ on:
2121
- master
2222
pull_request:
2323
paths-ignore:
24-
- docs/*
24+
- docs/**
2525
- NEWS
2626
- UPGRADING
2727
- UPGRADING.INTERNALS
@@ -30,8 +30,8 @@ on:
3030
- CODING_STANDARDS.md
3131
- .cirrus.yml
3232
- .travis.yml
33-
- travis/*
34-
- .circleci/*
33+
- travis/**
34+
- .circleci/**
3535
branches:
3636
- '**'
3737
concurrency:

0 commit comments

Comments
 (0)