Skip to content

Commit 94aa2c2

Browse files
committed
Merge Commit 'f566df9': feat: add dynamic run-names to patch release workflows (google-gemini#12336)
2 parents d9f0d95 + f566df9 commit 94aa2c2

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

.github/workflows/release-patch-1-create-pr.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: 'Release: Patch (1) Create PR'
22

3+
run-name: >-
4+
Release Patch (1) Create PR | S:${{ inputs.channel }} | C:${{ inputs.commit }} ${{ inputs.original_pr && format('| PR:#{0}', inputs.original_pr) || '' }}
5+
36
on:
47
workflow_dispatch:
58
inputs:

.github/workflows/release-patch-2-trigger.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
name: 'Release: Patch (2) Trigger'
22

3+
run-name: >-
4+
Release Patch (2) Trigger |
5+
${{ github.event.pull_request.number && format('PR #{0}', github.event.pull_request.number) || 'Manual' }} |
6+
${{ github.event.pull_request.head.ref || github.event.inputs.ref }}
7+
38
on:
49
pull_request:
510
types:

.github/workflows/release-patch-3-release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: 'Release: Patch (3) Release'
22

3+
run-name: >-
4+
Release Patch (3) Release | T:${{ inputs.type }} | R:${{ inputs.release_ref }} ${{ inputs.original_pr && format('| PR:#{0}', inputs.original_pr) || '' }}
5+
36
on:
47
workflow_dispatch:
58
inputs:

0 commit comments

Comments
 (0)