如何为github操作配置标题?

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

我正在尝试配置 github 操作的名称。

我的

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

enter image description here

对于其他类型的操作(计划或手动运行),它们仅包含操作的名称,并且没有提及它们运行的提交(请参见下面的示例)。

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

enter image description here

github continuous-integration github-actions
1个回答
0
投票

您可以将

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

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