[CI] Show distinct run-name per event in pr-test workflow (#25452)

This commit is contained in:
Liangsheng Yin
2026-05-15 18:58:07 -07:00
committed by GitHub
parent 4c6eb12dea
commit b674007026
+7
View File
@@ -1,4 +1,11 @@
name: PR Test Base name: PR Test Base
run-name: >-
${{
github.event_name == 'schedule' && 'Scheduled Full Run'
|| github.event_name == 'workflow_dispatch' && format('Manual run by {0}', github.actor)
|| github.event_name == 'pull_request' && format('PR #{0} - {1}', github.event.pull_request.number, github.event.pull_request.title)
|| 'PR Test Base'
}}
on: on:
schedule: schedule: