Skip to content

Commit ed875ea

Browse files
committed
Improve
1 parent 424295a commit ed875ea

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

.github/workflows/CI-ComposerRequireChecker.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: 'CI - ComposerRequireChecker'
22
on:
3+
workflow_dispatch: # Allows to run the workflow manually from the Actions tab
34
workflow_run:
45
workflows: ["CI"]
56
types:
@@ -24,7 +25,7 @@ jobs:
2425
steps:
2526
- uses: actions/checkout@v2
2627

27-
- name: Setup PHP
28+
- name: Setup PHP ${{ matrix.php-version }}
2829
uses: shivammathur/setup-php@v2
2930
with:
3031
php-version: ${{ matrix.php-version }}

.github/workflows/CI-DepsChecker.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: 'CI - Dependencies check'
22
on:
3+
workflow_dispatch: # Allows to run the workflow manually from the Actions tab
34
workflow_run:
45
workflows: ["CI"]
56
types:
@@ -24,7 +25,7 @@ jobs:
2425
steps:
2526
- uses: actions/checkout@v2
2627

27-
- name: Setup PHP
28+
- name: Setup PHP ${{ matrix.php-version }}
2829
uses: shivammathur/setup-php@v2
2930
with:
3031
php-version: ${{ matrix.php-version }}

.github/workflows/CI-nightly.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: 'CI - Nightly'
22
on:
3+
workflow_dispatch: # Allows to run the workflow manually from the Actions tab
34
workflow_run:
45
workflows: ["CI"]
56
types:
@@ -20,6 +21,7 @@ jobs:
2021
name: Nightly - Symfony ${{ matrix.symfony-version }}
2122
needs: [ static-tests, tests ]
2223
runs-on: ubuntu-latest
24+
if: ${{ github.event.workflow_run.conclusion == 'success' }}
2325
strategy:
2426
fail-fast: false
2527
max-parallel: 4
@@ -40,7 +42,7 @@ jobs:
4042
- name: Check out code
4143
uses: actions/checkout@v2
4244

43-
- name: Setup PHP
45+
- name: Setup PHP ${{ matrix.php-version }}
4446
uses: shivammathur/setup-php@v2
4547
with:
4648
php-version: '${{ matrix.php-version }}'

.github/workflows/CI.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: 'CI'
22
on: # Build any PRs and main branch changes
3+
workflow_dispatch: # Allows to run the workflow manually from the Actions tab
34
pull_request:
45
types:
56
- opened
@@ -56,7 +57,7 @@ jobs:
5657
echo "COVERAGE_OUTPUT_STYLE=clover" >> $GITHUB_ENV
5758
echo "COVERAGE_TYPE=xdebug" >> $GITHUB_ENV
5859
59-
- name: Setup PHP
60+
- name: Setup PHP ${{ matrix.php-version }}
6061
uses: shivammathur/setup-php@v2
6162
with:
6263
php-version: '${{ matrix.php-version }}'

0 commit comments

Comments
 (0)