Skip to content

Commit 6d05e39

Browse files
committed
Add branches filter on workflows
1 parent 39119f4 commit 6d05e39

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

.github/workflows/test-coding-standards.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,14 @@ on:
44
schedule:
55
- cron: '0 0 * * *'
66
pull_request:
7+
branches:
8+
- '*.x'
79
paths:
810
- '.github/workflows/test-coding-standards.yml'
911
- '**.php'
1012
push:
13+
branches:
14+
- '*.x'
1115
paths:
1216
- '.github/workflows/test-coding-standards.yml'
1317
- '**.php'

.github/workflows/test-phpstan.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,16 @@ on:
44
schedule:
55
- cron: '0 0 * * *'
66
pull_request:
7+
branches:
8+
- '*.x'
79
paths:
810
- '.github/workflows/test-phpstan.yml'
911
- '**.php'
1012
- 'extension.neon'
1113
- 'phpstan.neon.dist'
1214
push:
15+
branches:
16+
- '*.x'
1317
paths:
1418
- '.github/workflows/test-phpstan.yml'
1519
- '**.php'

.github/workflows/test-phpunit.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,15 @@ on:
44
schedule:
55
- cron: '0 0 * * *'
66
pull_request:
7+
branches:
8+
- '*.x'
79
paths:
810
- '.github/workflows/test-phpunit.yml'
911
- '**.php'
1012
- 'phpunit.dist.xml'
1113
push:
14+
branches:
15+
- '*.x'
1216
paths:
1317
- '.github/workflows/test-phpunit.yml'
1418
- '**.php'

0 commit comments

Comments
 (0)