github-action-disallow-concurrent-runs
禁止并发工作流运行的GitHub动作
不幸的是,GitHub Actions目前尚无法对工作流进行排队。
如果您有工作流来部署应用程序,那么它就可以了 :collision: 如果多个部署同时更改事物,那么这可能适合您。
简而言之,如果给定的工作流已经在特定分支中运行,则这将取消新的运行。
用法
on : push
# ...
jobs :
deploy :
runs-on : ubuntu-latest
steps :
- name : Disallow Concurrent Runs
uses : byu-oit/github-action-disallow-concurrent-runs@v2
with :
token : ${{ git
评论0
最新资源