bake 发表于 2021-5-19 10:59

【原创python源码】使用post请求触发githubAction

本帖最后由 bake 于 2021-5-19 11:04 编辑

1.到https://github.com/settings/tokens申请token(勾选第二个workflow即可)
2.将token,github用户名,仓库项目名,.github/workflows路径下yml文件名填入代码


url = "https://api.github.com/repos/<用户名>/<仓库项目名>/actions/workflows/<yml文件名>/dispatches"
    data = {"ref": "main"}
    headers = {
      'accept': 'application/vnd.github.v3+json',
      'Authorization': 'Bearer <token>',
    }

    r = s.post(url, data=json.dumps(data, separators=(',', ':')), headers=headers)

First丶云心 发表于 2021-5-19 12:04

页: [1]
查看完整版本: 【原创python源码】使用post请求触发githubAction