Skip to content

Commit bb3bb2e

Browse files
committed
Fixed sub-directory pattern.
1 parent 7368932 commit bb3bb2e

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

.github/workflows/code-quality.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ on:
1212
branches:
1313
- main
1414
paths:
15-
- 'plugins/*/*.php'
15+
- 'plugins/*/**.php'
1616
pull_request:
1717
paths:
18-
- 'plugins/*/*.php'
18+
- 'plugins/*/**.php'
1919

2020
jobs:
2121
detect-plugins:

.github/workflows/codeception.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ on:
1212
branches:
1313
- main
1414
paths:
15-
- 'plugins/*/*.php'
15+
- 'plugins/*/**.php'
1616
pull_request:
1717
paths:
18-
- 'plugins/*/*.php'
18+
- 'plugins/*/**.php'
1919

2020
# Cancel previous workflow run groups that have not completed.
2121
concurrency:

.github/workflows/create-release-branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
branches:
99
- main
1010
paths:
11-
- "plugins/*/*"
11+
- "plugins/*/**"
1212

1313
permissions:
1414
contents: write # Allow actions to read and write repository contents

.github/workflows/e2e-test.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@ on:
1313
branches:
1414
- main
1515
paths:
16-
- 'plugins/*/*.php'
17-
- 'plugins/*/*.js'
18-
- 'plugins/*/*.css'
19-
- 'plugins/*/*.json'
16+
- 'plugins/*/**.php'
17+
- 'plugins/*/**.js'
18+
- 'plugins/*/**.css'
19+
- 'plugins/*/**.json'
2020
pull_request:
2121
branches:
2222
- main
2323
paths:
24-
- 'plugins/*/*.php'
25-
- 'plugins/*/*.js'
26-
- 'plugins/*/*.css'
27-
- 'plugins/*/*.json'
24+
- 'plugins/*/**.php'
25+
- 'plugins/*/**.js'
26+
- 'plugins/*/**.css'
27+
- 'plugins/*/**.json'
2828

2929
jobs:
3030
detect-plugin:

.github/workflows/plugin-artifact-for-pr.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name: Plugin Artifact for PR
33
on:
44
pull_request:
55
paths:
6-
- 'plugins/*/*.php'
7-
- 'plugins/*/*.js'
8-
- 'plugins/*/*.css'
9-
- 'plugins/*/*.json'
6+
- 'plugins/*/**.php'
7+
- 'plugins/*/**.js'
8+
- 'plugins/*/**.css'
9+
- 'plugins/*/**.json'
1010

1111
jobs:
1212
create-plugin-artifact:

0 commit comments

Comments
 (0)