GitHub Actions根据评论内容触发工作

时间:2020-11-11 17:32:24

标签: github github-actions

我想根据PR上的评论内容手动触发部署作业。我的工作流程中包含以下yaml,但是当我评论“部署”时,这似乎没有任何作用:

name: Adapter Deploy
on:
  issue_comment:
    types: [created, edited]
jobs:
  build-and-deploy-to-Azure:
    runs-on: ubuntu-latest
    if: github.event.comment.body == 'deploy'
    steps:
    - name: 'Confirm manual deploy'
      run: echo I was run on demand by ${GITHUB_ACTOR}

我不知道如何调试此错误或我的Yaml出了什么问题。有人可以在正确的方向帮助我吗?

0 个答案:

没有答案