当标签为Update
的请求请求合并时,我试图使用GitHub动作自动创建发布。
此刻,我的工作流在合并“拉取请求”时触发,但是我不确定只有在“拉取请求”具有Update
标记的情况下如何继续工作流。
当前工作流程
name: Create Release
on:
pull_request:
types: [closed]
jobs:
release:
if: github.event.pull_request.merged == true
...rest of workflow...
答案 0 :(得分:1)
您应该可以使用以下内容:
if: contains(github.event.pull_request.labels.*.name, 'Update')