diff --git a/.github/workflows/pr-test.yml b/.github/workflows/pr-test.yml index 0d9b81712..d4e938168 100644 --- a/.github/workflows/pr-test.yml +++ b/.github/workflows/pr-test.yml @@ -1,4 +1,11 @@ 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: schedule: