Skip to content

Commit 91c3f53

Browse files
committed
6601: Added runner name to all actions - head_ref
1 parent 21d5f3e commit 91c3f53

18 files changed

Lines changed: 18 additions & 18 deletions

.github/workflows/apispec.yaml

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

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

66
jobs:
77
apispec:

.github/workflows/changelog.yaml

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

99
name: Changelog
10-
run-name: "Changelog - ${{ github.ref_name }}"
10+
run-name: "Changelog - ${{ github.head_ref || github.ref_name }}"
1111

1212
on:
1313
pull_request:

.github/workflows/composer.yaml

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

2626
name: Composer
27-
run-name: "Composer - ${{ github.ref_name }}"
27+
run-name: "Composer - ${{ github.head_ref || github.ref_name }}"
2828

2929
env:
3030
COMPOSE_USER: runner

.github/workflows/composer_install.yaml

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

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

66
jobs:
77
test-composer-install:

.github/workflows/docker_build_images_from_tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +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 }}"
12+
run-name: "Build release - ${{ github.head_ref || github.ref_name }}"
1313

1414
env:
1515
REGISTRY: ghcr.io

.github/workflows/docker_build_stg_images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +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 }}"
9+
run-name: "Build docker image (staging) - ${{ github.head_ref || github.ref_name }}"
1010

1111
jobs:
1212
docker:

.github/workflows/doctrine.yaml

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

33
name: Doctrine
4-
run-name: "Doctrine - ${{ github.ref_name }}"
4+
run-name: "Doctrine - ${{ github.head_ref || github.ref_name }}"
55

66
jobs:
77
validate-doctrine-shema:

.github/workflows/github_build_release.yml

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

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

1111
permissions:
1212
contents: write

.github/workflows/javascript.yaml

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

1414
name: JavaScript
15-
run-name: "JavaScript - ${{ github.ref_name }}"
15+
run-name: "JavaScript - ${{ github.head_ref || github.ref_name }}"
1616

1717
on:
1818
pull_request:

.github/workflows/markdown.yaml

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

2121
name: Markdown
22-
run-name: "Markdown - ${{ github.ref_name }}"
22+
run-name: "Markdown - ${{ github.head_ref || github.ref_name }}"
2323

2424
on:
2525
pull_request:

0 commit comments

Comments
 (0)