mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-24 20:14:44 -07:00
feat: add dynamic run-names to patch release workflows (#12336)
This commit is contained in:
@@ -1,5 +1,8 @@
|
|||||||
name: 'Release: Patch (1) Create PR'
|
name: 'Release: Patch (1) Create PR'
|
||||||
|
|
||||||
|
run-name: >-
|
||||||
|
Release Patch (1) Create PR | S:${{ inputs.channel }} | C:${{ inputs.commit }} ${{ inputs.original_pr && format('| PR:#{0}', inputs.original_pr) || '' }}
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs:
|
inputs:
|
||||||
|
|||||||
@@ -1,5 +1,10 @@
|
|||||||
name: 'Release: Patch (2) Trigger'
|
name: 'Release: Patch (2) Trigger'
|
||||||
|
|
||||||
|
run-name: >-
|
||||||
|
Release Patch (2) Trigger |
|
||||||
|
${{ github.event.pull_request.number && format('PR #{0}', github.event.pull_request.number) || 'Manual' }} |
|
||||||
|
${{ github.event.pull_request.head.ref || github.event.inputs.ref }}
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
types:
|
types:
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
name: 'Release: Patch (3) Release'
|
name: 'Release: Patch (3) Release'
|
||||||
|
|
||||||
|
run-name: >-
|
||||||
|
Release Patch (3) Release | T:${{ inputs.type }} | R:${{ inputs.release_ref }} ${{ inputs.original_pr && format('| PR:#{0}', inputs.original_pr) || '' }}
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs:
|
inputs:
|
||||||
|
|||||||
Reference in New Issue
Block a user