Skip to content

Commit 2d18489

Browse files
committed
Avoid duplicate GitHub action runs
1 parent 12d952f commit 2d18489

File tree

4 files changed

+41
-3
lines changed

4 files changed

+41
-3
lines changed

.github/workflows/coding-standard.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
name: ExtDN M2 Coding Standard
22
on:
33
push:
4+
branches:
5+
- 0.x
6+
- 1.x
7+
- 2.x
48
pull_request:
9+
branches:
10+
- 0.x
11+
- 1.x
12+
- 2.x
513

614
jobs:
715
static:

.github/workflows/integration.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
name: ExtDN M2 Integration Tests
2-
on: [ push, pull_request ]
2+
on:
3+
push:
4+
branches:
5+
- 0.x
6+
- 1.x
7+
- 2.x
8+
pull_request:
9+
branches:
10+
- 0.x
11+
- 1.x
12+
- 2.x
313

414
jobs:
515
mage247:

.github/workflows/phpstan.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
name: ExtDN M2 PHPStan
2-
on: [ push, pull_request ]
2+
on:
3+
push:
4+
branches:
5+
- 0.x
6+
- 1.x
7+
- 2.x
8+
pull_request:
9+
branches:
10+
- 0.x
11+
- 1.x
12+
- 2.x
313

414
jobs:
515
phpstan:

.github/workflows/unit.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
name: ExtDN M2 Unit Tests
2-
on: [ push, pull_request ]
2+
on:
3+
push:
4+
branches:
5+
- 0.x
6+
- 1.x
7+
- 2.x
8+
pull_request:
9+
branches:
10+
- 0.x
11+
- 1.x
12+
- 2.x
313

414
jobs:
515
unit-tests-mage247:

0 commit comments

Comments
 (0)