第 116 章 GitHub 组件
从 Camel 版本 2.15 开始提供
GitHub 组件通过封装 egit-github 与 GitHub API 交互。它目前为新的拉取请求、拉取请求注释、标签和提交提供轮询。它还可以在拉取请求上生成注释,并完全关闭拉取请求。
此端点依赖于简单的轮询,而不是 Webhook。原因包括:
- 可靠性/状态的问题
- 我们正在轮询的有效负载类型通常不大(以及分页在 API 中提供)
- 需要支持在有些地方无法公开运行的应用程序,其中 Webhook 会失败
请注意,GitHub API 相当大。因此,此组件可轻松扩展,以提供额外的交互。
Maven 用户需要将以下依赖项添加到这个组件的 pom.xml 中:
<dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-github</artifactId> <version>${camel-version}</version> </dependency>
116.1. URI 格式
github://endpoint[?options]