使用Github的API 远程触发Github Action
https://docs.github.com/cn/actions/using-workflows/events-that-trigger-workflows#repository_dispatch
在仓库 .github/workflows/deploy.yml
里添加 repository_dispatch:
1 | # master branch on push, auto run |
创建一个带repo权限的personal access token
访问https://github.com/settings/tokens/new 创建token,需要勾选repo权限
API调用方法
1 | curl -X POST https://api.github.com/repos/:owner/:repo/dispatches \ |
其中,owner 是用户名,repo 是仓库名, TRIGGER_TOKEN 是上面申请带repo权限的 token,TRIGGER_EVENT 是自定义的事件名
调用
1 | curl -X POST https://api.github.com/repos/gddhy/MrpStore-Web/dispatches \ |