英文:
Is there a way to shorten the check name in GitHub PR?
问题
这是在Github使用Github Actions中的检查名称。
它包含workflow名称
+ 任务ID
+ 步骤名称
+ 条件
。
是否可以将其缩短,就像应用程序一样?例如,SonarCloud只有一个单一的名称。
移除name
参数只会使情况更糟,因为GitHub将使用完整的文件名(加上路径),而不是一个友好的单一名称。
英文:
This is the check name in Github using Github Actions.
It contains the workflow name
+ job id
+ step name
+ on condition
.
Is it possible to make it shorter, as we have with apps? SonarCloud, for example, only has a single name.
Removing the name
parameter only makes it worse since github will use the full filename (plus path) instead of a single friendly name.
答案1
得分: 4
你可以通过在工作流的顶层定义 run-name
来自定义它。
run-name: "SonarCloud Code Analysis"
你可以在文档 这里 中了解更多信息。
英文:
You can customise that by defining run-name
on top level of your workflow.
run-name: "SonarCloud Code Analysis"
You can read about it in docs here
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论