我只想在特定工作流程完成时触发工作流程...有人知道该怎么做吗?
一些背景:
Tests,另一个称为Build-feature.Tests我在每个 PR 到分支上运行我的工作流程feature。feature,那么我想运行工作流程Tests,并且只有当成功时我才想运行Build-feature工作流程。还有一个事件check_suite应该触发工作流程:https://help.github.com/en/actions/automating-your-workflow-with-github-actions/events-that-trigger-workflows#check-suite-事件检查套件
我尝试了这个例子:
on:
check_suite:
types: [rerequested, completed]
Run Code Online (Sandbox Code Playgroud)
但我的工作流程从未触发,有什么想法吗?或者关于如何实现上述目标的任何其他想法?
continuous-integration github continuous-deployment devops github-actions