如何配置工作流运行的标题?

问题描述 投票:0回答:1

我正在尝试配置 GitHub Actions 工作流程运行的名称。

我的

ci.yaml
文件在拉取请求时触发,它会自动包含其运行的提交的名称:

enter image description here

而对于其他类型的触发器(计划或手动运行),它们仅包含操作的名称,并且没有提及它们运行的提交:

enter image description here

如何自定义它以使提交始终可见?

github github-actions
1个回答
0
投票

您可以将

run-name
属性添加到您的工作流程 YAML:

run-name: ${{ github.event.workflow_run.head_commit.message }}
© www.soinside.com 2019 - 2024. All rights reserved.