gpt4 book ai didi

github-actions - Github Action - 将评论添加到 PR 时接收事件?

转载 作者:行者123 更新时间:2023-12-03 22:00:25 30 4
gpt4 key购买 nike

当评论添加到该 PR 时,有没有办法让 Github Action 在 PR 上触发?我创建了一个 Github 操作,它将在 PR(创建等)上发生的各种事件上触发。我还没有弄清楚的一个是添加评论时的触发器。我在这里没有看到任何表明它受支持的内容:

https://help.github.com/en/actions/automating-your-workflow-with-github-actions/events-that-trigger-workflows

我错过了什么吗?

最佳答案

GitHub 拉取请求实际上是问题。所以你要找的事件是 issue_comment .

on:
issue_comment:
types: [created]

您可以过滤掉这样的拉取请求评论事件:
on:
issue_comment:
types: [created]
jobs:
example:
runs-on: ubuntu-latest
steps:
- name: Execute for pull request comments only
if: github.event.issue.pull_request
run: echo "This is a pull request comment event"

关于github-actions - Github Action - 将评论添加到 PR 时接收事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59778589/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com