@orgloop/connector-github 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -21,9 +21,12 @@ sources:
|
|
|
21
21
|
- pull_request.review_submitted
|
|
22
22
|
- pull_request_review_comment
|
|
23
23
|
- issue_comment
|
|
24
|
+
- pull_request.opened
|
|
24
25
|
- pull_request.closed
|
|
25
26
|
- pull_request.merged
|
|
27
|
+
- pull_request.ready_for_review
|
|
26
28
|
- workflow_run.completed
|
|
29
|
+
- check_suite.completed
|
|
27
30
|
authors: # optional — only include events by these users
|
|
28
31
|
- alice
|
|
29
32
|
- bob
|
|
@@ -51,9 +54,12 @@ All events are emitted as OrgLoop `resource.changed` type.
|
|
|
51
54
|
| `pull_request.review_submitted` | PR reviews (approve, request changes, comment) | `resource.changed` |
|
|
52
55
|
| `pull_request_review_comment` | Inline review comments on PRs | `resource.changed` |
|
|
53
56
|
| `issue_comment` | Comments on issues and PRs | `resource.changed` |
|
|
57
|
+
| `pull_request.opened` | Newly created PRs | `resource.changed` |
|
|
54
58
|
| `pull_request.closed` | Closed PRs | `resource.changed` |
|
|
55
59
|
| `pull_request.merged` | Merged PRs (polled via closed PRs) | `resource.changed` |
|
|
60
|
+
| `pull_request.ready_for_review` | Draft PRs marked ready for review | `resource.changed` |
|
|
56
61
|
| `workflow_run.completed` | Failed GitHub Actions workflow runs | `resource.changed` |
|
|
62
|
+
| `check_suite.completed` | Completed check suites | `resource.changed` |
|
|
57
63
|
|
|
58
64
|
### Example event payload (PR review)
|
|
59
65
|
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orgloop/connector-github",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "OrgLoop GitHub connector — poll for PR activity, CI status, issues",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@octokit/rest": "^21.0.0",
|
|
10
|
-
"@orgloop/sdk": "0.1.
|
|
10
|
+
"@orgloop/sdk": "0.1.2"
|
|
11
11
|
},
|
|
12
12
|
"orgloop": {
|
|
13
13
|
"type": "connector",
|