Skip to content

Commit 72dab03

Browse files
authored
Merge pull request #8101 from kenjis/add-name-to-workflows
chore: add names to github workflows
2 parents aca40b3 + 1bae325 commit 72dab03

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.github/workflows/test-autoreview.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Automatic Code Review
1+
name: AutoReview
22

33
on:
44
pull_request:
@@ -23,9 +23,10 @@ permissions:
2323

2424
jobs:
2525
auto-review-tests:
26+
name: Automatic Code Review
2627
uses: ./.github/workflows/reusable-serviceless-phpunit-test.yml # @TODO Extract to codeigniter4/.github repo
2728
with:
28-
job-name: Automatic Code Review [PHP 8.1]
29+
job-name: PHP 8.1
2930
php-version: '8.1'
3031
job-id: auto-review-tests
3132
group-name: AutoReview

.github/workflows/test-phpunit.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ jobs:
5050
echo "version=8.1" >> $GITHUB_OUTPUT
5151
5252
sanity-tests:
53+
name: Others
5354
needs: coverage-php-version
5455

5556
strategy:
@@ -77,6 +78,7 @@ jobs:
7778
extra-composer-options: ${{ matrix.composer-option }}
7879

7980
database-live-tests:
81+
name: DatabaseLive
8082
needs:
8183
- coverage-php-version
8284
- sanity-tests
@@ -107,7 +109,7 @@ jobs:
107109

108110
uses: ./.github/workflows/reusable-phpunit-test.yml # @TODO Extract to codeigniter4/.github repo
109111
with:
110-
job-name: Database Live Tests
112+
job-name:
111113
php-version: ${{ matrix.php-version }}
112114
job-id: database-live-tests
113115
db-platform: ${{ matrix.db-platform }}
@@ -120,6 +122,7 @@ jobs:
120122
extra-composer-options: ${{ matrix.composer-option }}
121123

122124
separate-process-tests:
125+
name: SeparateProcess
123126
needs:
124127
- coverage-php-version
125128
- sanity-tests
@@ -138,7 +141,7 @@ jobs:
138141

139142
uses: ./.github/workflows/reusable-phpunit-test.yml # @TODO Extract to codeigniter4/.github repo
140143
with:
141-
job-name: Separate Process Tests
144+
job-name:
142145
php-version: ${{ matrix.php-version }}
143146
job-id: separate-process-tests
144147
group-name: SeparateProcess
@@ -149,6 +152,7 @@ jobs:
149152
extra-composer-options: ${{ matrix.composer-option }}
150153

151154
cache-live-tests:
155+
name: CacheLive
152156
needs:
153157
- coverage-php-version
154158
- sanity-tests

0 commit comments

Comments
 (0)