Skip to content

Commit 3bc5aef

Browse files
committed
Fix workflow trigger
Signed-off-by: core23 <[email protected]>
1 parent 50371dd commit 3bc5aef

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

.github/workflows/coding-standards.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
name: "Check Coding Standards"
44

55
on:
6+
create:
67
pull_request:
78
push:
89
branches:
9-
- "master"
10+
- "*.x"
1011

1112
jobs:
1213
coding-standards:

.github/workflows/mutation-tests.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@
33
name: "Mutation tests"
44

55
on:
6+
create:
67
pull_request:
8+
push:
9+
branches:
10+
- "*.x"
711

812
jobs:
913
mutation-tests:

.github/workflows/phpunit.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
name: "PHPUnit tests"
44

55
on:
6+
create:
67
pull_request:
78
push:
89
branches:
9-
- "master"
10+
- "*.x"
1011

1112
jobs:
1213
phpunit:

.github/workflows/psalm.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
name: "Static Analysis by Psalm"
44

55
on:
6+
create:
67
pull_request:
78
push:
89
branches:
9-
- "master"
10+
- "*.x"
1011

1112
jobs:
1213
static-analysis-psalm:

0 commit comments

Comments
 (0)