Skip to content

Commit 21d5f3e

Browse files
committed
6601: Added runner name to all actions
1 parent 94f219d commit 21d5f3e

18 files changed

Lines changed: 18 additions & 0 deletions

.github/workflows/apispec.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
on: pull_request
22

33
name: Api Spec
4+
run-name: "Api Spec - ${{ github.ref_name }}"
45

56
jobs:
67
apispec:

.github/workflows/changelog.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
### Checks that changelog has been updated
88

99
name: Changelog
10+
run-name: "Changelog - ${{ github.ref_name }}"
1011

1112
on:
1213
pull_request:

.github/workflows/composer.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
### ```
2525

2626
name: Composer
27+
run-name: "Composer - ${{ github.ref_name }}"
2728

2829
env:
2930
COMPOSE_USER: runner

.github/workflows/composer_install.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
on: pull_request
22

33
name: Composer install
4+
run-name: "Composer install - ${{ github.ref_name }}"
45

56
jobs:
67
test-composer-install:

.github/workflows/docker_build_images_from_tag.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
# @see https://docs.github.com/en/actions/tutorials/publish-packages/publish-docker-images#publishing-images-to-github-packages
1010

1111
name: Build docker images (tag)
12+
run-name: "Build release - ${{ github.ref_name }}"
1213

1314
env:
1415
REGISTRY: ghcr.io

.github/workflows/docker_build_stg_images.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66

77
# This Action builds to os2display/* using ./infrastructure/*
88
name: Build docker image (develop)
9+
run-name: "Build docker image (staging) - ${{ github.ref_name }}"
910

1011
jobs:
1112
docker:

.github/workflows/doctrine.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
on: pull_request
22

33
name: Doctrine
4+
run-name: "Doctrine - ${{ github.ref_name }}"
45

56
jobs:
67
validate-doctrine-shema:

.github/workflows/github_build_release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
- "*"
77

88
name: Create Github Release
9+
run-name: "Create Github Release - ${{ github.ref_name }}"
910

1011
permissions:
1112
contents: write

.github/workflows/javascript.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
### [Prettier](https://prettier.io/) exists.
1313

1414
name: JavaScript
15+
run-name: "JavaScript - ${{ github.ref_name }}"
1516

1617
on:
1718
pull_request:

.github/workflows/markdown.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
### exists.
2020

2121
name: Markdown
22+
run-name: "Markdown - ${{ github.ref_name }}"
2223

2324
on:
2425
pull_request:

0 commit comments

Comments
 (0)