@automate.ax/catalog 0.88.2 → 0.88.3
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/dist/triggers/github.d.ts +935 -89
- package/dist/triggers/github.js +396 -4
- package/dist/triggers/index.d.ts +2684 -992
- package/package.json +1 -1
- package/src/triggers/github.ts +398 -4
package/package.json
CHANGED
package/src/triggers/github.ts
CHANGED
|
@@ -72,7 +72,161 @@ const GITHUB_CHECKS_WRITE_ACCOUNT = {
|
|
|
72
72
|
serviceId: "github",
|
|
73
73
|
} as const satisfies IntegrationAccountRequirement
|
|
74
74
|
|
|
75
|
+
const GITHUB_MERGE_QUEUES_ACCOUNT = {
|
|
76
|
+
connectionOptions: [
|
|
77
|
+
{
|
|
78
|
+
requiredScopes: ["merge_queues:read"],
|
|
79
|
+
},
|
|
80
|
+
],
|
|
81
|
+
serviceId: "github",
|
|
82
|
+
} as const satisfies IntegrationAccountRequirement
|
|
83
|
+
|
|
84
|
+
const GITHUB_METADATA_ACCOUNT = {
|
|
85
|
+
connectionOptions: [
|
|
86
|
+
{
|
|
87
|
+
requiredScopes: ["metadata:read"],
|
|
88
|
+
},
|
|
89
|
+
],
|
|
90
|
+
serviceId: "github",
|
|
91
|
+
} as const satisfies IntegrationAccountRequirement
|
|
92
|
+
|
|
75
93
|
export const githubTriggerDefinitions = {
|
|
94
|
+
githubCommitCommentCreated: {
|
|
95
|
+
account: GITHUB_CONTENTS_ACCOUNT,
|
|
96
|
+
type: "github.commit-comment.created",
|
|
97
|
+
},
|
|
98
|
+
githubCommitCommentEvent: {
|
|
99
|
+
account: GITHUB_CONTENTS_ACCOUNT,
|
|
100
|
+
type: "github.commit-comment.event",
|
|
101
|
+
},
|
|
102
|
+
githubDeploymentProtectionRuleEvent: {
|
|
103
|
+
account: GITHUB_DEPLOYMENTS_ACCOUNT,
|
|
104
|
+
type: "github.deployment-protection-rule.event",
|
|
105
|
+
},
|
|
106
|
+
githubDeploymentProtectionRuleRequested: {
|
|
107
|
+
account: GITHUB_DEPLOYMENTS_ACCOUNT,
|
|
108
|
+
type: "github.deployment-protection-rule.requested",
|
|
109
|
+
},
|
|
110
|
+
githubDeploymentReviewApproved: {
|
|
111
|
+
account: GITHUB_DEPLOYMENTS_ACCOUNT,
|
|
112
|
+
type: "github.deployment-review.approved",
|
|
113
|
+
},
|
|
114
|
+
githubDeploymentReviewEvent: {
|
|
115
|
+
account: GITHUB_DEPLOYMENTS_ACCOUNT,
|
|
116
|
+
type: "github.deployment-review.event",
|
|
117
|
+
},
|
|
118
|
+
githubDeploymentReviewRejected: {
|
|
119
|
+
account: GITHUB_DEPLOYMENTS_ACCOUNT,
|
|
120
|
+
type: "github.deployment-review.rejected",
|
|
121
|
+
},
|
|
122
|
+
githubDeploymentReviewRequested: {
|
|
123
|
+
account: GITHUB_DEPLOYMENTS_ACCOUNT,
|
|
124
|
+
type: "github.deployment-review.requested",
|
|
125
|
+
},
|
|
126
|
+
githubIssueDependencyBlockedByAdded: {
|
|
127
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
128
|
+
type: "github.issue-dependencies.blocked-by-added",
|
|
129
|
+
},
|
|
130
|
+
githubIssueDependencyBlockedByRemoved: {
|
|
131
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
132
|
+
type: "github.issue-dependencies.blocked-by-removed",
|
|
133
|
+
},
|
|
134
|
+
githubIssueDependencyBlockingAdded: {
|
|
135
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
136
|
+
type: "github.issue-dependencies.blocking-added",
|
|
137
|
+
},
|
|
138
|
+
githubIssueDependencyBlockingRemoved: {
|
|
139
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
140
|
+
type: "github.issue-dependencies.blocking-removed",
|
|
141
|
+
},
|
|
142
|
+
githubIssueDependenciesEvent: {
|
|
143
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
144
|
+
type: "github.issue-dependencies.event",
|
|
145
|
+
},
|
|
146
|
+
githubMergeGroupChecksRequested: {
|
|
147
|
+
account: GITHUB_MERGE_QUEUES_ACCOUNT,
|
|
148
|
+
type: "github.merge-group.checks-requested",
|
|
149
|
+
},
|
|
150
|
+
githubMergeGroupDestroyed: {
|
|
151
|
+
account: GITHUB_MERGE_QUEUES_ACCOUNT,
|
|
152
|
+
type: "github.merge-group.destroyed",
|
|
153
|
+
},
|
|
154
|
+
githubMergeGroupEvent: {
|
|
155
|
+
account: GITHUB_MERGE_QUEUES_ACCOUNT,
|
|
156
|
+
type: "github.merge-group.event",
|
|
157
|
+
},
|
|
158
|
+
githubParentIssueAdded: {
|
|
159
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
160
|
+
type: "github.parent-issue.added",
|
|
161
|
+
},
|
|
162
|
+
githubParentIssueRemoved: {
|
|
163
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
164
|
+
type: "github.parent-issue.removed",
|
|
165
|
+
},
|
|
166
|
+
githubPullRequestReviewThreadEvent: {
|
|
167
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
168
|
+
type: "github.pull-request-review-thread.event",
|
|
169
|
+
},
|
|
170
|
+
githubPullRequestReviewThreadResolved: {
|
|
171
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
172
|
+
type: "github.pull-request-review-thread.resolved",
|
|
173
|
+
},
|
|
174
|
+
githubPullRequestReviewThreadUnresolved: {
|
|
175
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
176
|
+
type: "github.pull-request-review-thread.unresolved",
|
|
177
|
+
},
|
|
178
|
+
githubRepositoryArchived: {
|
|
179
|
+
account: GITHUB_METADATA_ACCOUNT,
|
|
180
|
+
type: "github.repository.archived",
|
|
181
|
+
},
|
|
182
|
+
githubRepositoryCreated: {
|
|
183
|
+
account: GITHUB_METADATA_ACCOUNT,
|
|
184
|
+
type: "github.repository.created",
|
|
185
|
+
},
|
|
186
|
+
githubRepositoryDeleted: {
|
|
187
|
+
account: GITHUB_METADATA_ACCOUNT,
|
|
188
|
+
type: "github.repository.deleted",
|
|
189
|
+
},
|
|
190
|
+
githubRepositoryEdited: {
|
|
191
|
+
account: GITHUB_METADATA_ACCOUNT,
|
|
192
|
+
type: "github.repository.edited",
|
|
193
|
+
},
|
|
194
|
+
githubRepositoryEvent: {
|
|
195
|
+
account: GITHUB_METADATA_ACCOUNT,
|
|
196
|
+
type: "github.repository.event",
|
|
197
|
+
},
|
|
198
|
+
githubRepositoryPrivatized: {
|
|
199
|
+
account: GITHUB_METADATA_ACCOUNT,
|
|
200
|
+
type: "github.repository.privatized",
|
|
201
|
+
},
|
|
202
|
+
githubRepositoryPublicized: {
|
|
203
|
+
account: GITHUB_METADATA_ACCOUNT,
|
|
204
|
+
type: "github.repository.publicized",
|
|
205
|
+
},
|
|
206
|
+
githubRepositoryRenamed: {
|
|
207
|
+
account: GITHUB_METADATA_ACCOUNT,
|
|
208
|
+
type: "github.repository.renamed",
|
|
209
|
+
},
|
|
210
|
+
githubRepositoryTransferred: {
|
|
211
|
+
account: GITHUB_METADATA_ACCOUNT,
|
|
212
|
+
type: "github.repository.transferred",
|
|
213
|
+
},
|
|
214
|
+
githubRepositoryUnarchived: {
|
|
215
|
+
account: GITHUB_METADATA_ACCOUNT,
|
|
216
|
+
type: "github.repository.unarchived",
|
|
217
|
+
},
|
|
218
|
+
githubSubIssueAdded: {
|
|
219
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
220
|
+
type: "github.sub-issue.added",
|
|
221
|
+
},
|
|
222
|
+
githubSubIssueRemoved: {
|
|
223
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
224
|
+
type: "github.sub-issue.removed",
|
|
225
|
+
},
|
|
226
|
+
githubSubIssuesEvent: {
|
|
227
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
228
|
+
type: "github.sub-issues.event",
|
|
229
|
+
},
|
|
76
230
|
githubBranchCreated: {
|
|
77
231
|
account: GITHUB_CONTENTS_ACCOUNT,
|
|
78
232
|
type: "github.branch.created",
|
|
@@ -105,6 +259,14 @@ export const githubTriggerDefinitions = {
|
|
|
105
259
|
account: GITHUB_CHECKS_ACCOUNT,
|
|
106
260
|
type: "github.check-run.failed",
|
|
107
261
|
},
|
|
262
|
+
githubCheckRunNeutral: {
|
|
263
|
+
account: GITHUB_CHECKS_ACCOUNT,
|
|
264
|
+
type: "github.check-run.neutral",
|
|
265
|
+
},
|
|
266
|
+
githubCheckRunPending: {
|
|
267
|
+
account: GITHUB_CHECKS_ACCOUNT,
|
|
268
|
+
type: "github.check-run.pending",
|
|
269
|
+
},
|
|
108
270
|
githubCheckRunRerequested: {
|
|
109
271
|
account: GITHUB_CHECKS_WRITE_ACCOUNT,
|
|
110
272
|
type: "github.check-run.rerequested",
|
|
@@ -113,6 +275,14 @@ export const githubTriggerDefinitions = {
|
|
|
113
275
|
account: GITHUB_CHECKS_WRITE_ACCOUNT,
|
|
114
276
|
type: "github.check-run.requested-action",
|
|
115
277
|
},
|
|
278
|
+
githubCheckRunSkipped: {
|
|
279
|
+
account: GITHUB_CHECKS_ACCOUNT,
|
|
280
|
+
type: "github.check-run.skipped",
|
|
281
|
+
},
|
|
282
|
+
githubCheckRunStale: {
|
|
283
|
+
account: GITHUB_CHECKS_ACCOUNT,
|
|
284
|
+
type: "github.check-run.stale",
|
|
285
|
+
},
|
|
116
286
|
githubCheckRunSucceeded: {
|
|
117
287
|
account: GITHUB_CHECKS_ACCOUNT,
|
|
118
288
|
type: "github.check-run.succeeded",
|
|
@@ -125,6 +295,10 @@ export const githubTriggerDefinitions = {
|
|
|
125
295
|
account: GITHUB_CHECKS_ACCOUNT,
|
|
126
296
|
type: "github.check-run.timed-out",
|
|
127
297
|
},
|
|
298
|
+
githubCheckRunWaiting: {
|
|
299
|
+
account: GITHUB_CHECKS_ACCOUNT,
|
|
300
|
+
type: "github.check-run.waiting",
|
|
301
|
+
},
|
|
128
302
|
githubCheckSuiteActionRequired: {
|
|
129
303
|
account: GITHUB_CHECKS_ACCOUNT,
|
|
130
304
|
type: "github.check-suite.action-required",
|
|
@@ -145,6 +319,10 @@ export const githubTriggerDefinitions = {
|
|
|
145
319
|
account: GITHUB_CHECKS_ACCOUNT,
|
|
146
320
|
type: "github.check-suite.failed",
|
|
147
321
|
},
|
|
322
|
+
githubCheckSuiteNeutral: {
|
|
323
|
+
account: GITHUB_CHECKS_ACCOUNT,
|
|
324
|
+
type: "github.check-suite.neutral",
|
|
325
|
+
},
|
|
148
326
|
githubCheckSuiteRerequested: {
|
|
149
327
|
account: GITHUB_CHECKS_WRITE_ACCOUNT,
|
|
150
328
|
type: "github.check-suite.rerequested",
|
|
@@ -153,6 +331,14 @@ export const githubTriggerDefinitions = {
|
|
|
153
331
|
account: GITHUB_CHECKS_WRITE_ACCOUNT,
|
|
154
332
|
type: "github.check-suite.requested",
|
|
155
333
|
},
|
|
334
|
+
githubCheckSuiteSkipped: {
|
|
335
|
+
account: GITHUB_CHECKS_ACCOUNT,
|
|
336
|
+
type: "github.check-suite.skipped",
|
|
337
|
+
},
|
|
338
|
+
githubCheckSuiteStale: {
|
|
339
|
+
account: GITHUB_CHECKS_ACCOUNT,
|
|
340
|
+
type: "github.check-suite.stale",
|
|
341
|
+
},
|
|
156
342
|
githubCheckSuiteSucceeded: {
|
|
157
343
|
account: GITHUB_CHECKS_ACCOUNT,
|
|
158
344
|
type: "github.check-suite.succeeded",
|
|
@@ -181,10 +367,6 @@ export const githubTriggerDefinitions = {
|
|
|
181
367
|
account: GITHUB_DEPLOYMENTS_ACCOUNT,
|
|
182
368
|
type: "github.deployment-status.failed",
|
|
183
369
|
},
|
|
184
|
-
githubDeploymentStatusInactive: {
|
|
185
|
-
account: GITHUB_DEPLOYMENTS_ACCOUNT,
|
|
186
|
-
type: "github.deployment-status.inactive",
|
|
187
|
-
},
|
|
188
370
|
githubDeploymentStatusPending: {
|
|
189
371
|
account: GITHUB_DEPLOYMENTS_ACCOUNT,
|
|
190
372
|
type: "github.deployment-status.pending",
|
|
@@ -217,26 +399,134 @@ export const githubTriggerDefinitions = {
|
|
|
217
399
|
account: GITHUB_ISSUES_ACCOUNT,
|
|
218
400
|
type: "github.issue-comment.event",
|
|
219
401
|
},
|
|
402
|
+
githubIssueCommentPinned: {
|
|
403
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
404
|
+
type: "github.issue-comment.pinned",
|
|
405
|
+
},
|
|
406
|
+
githubIssueCommentUnpinned: {
|
|
407
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
408
|
+
type: "github.issue-comment.unpinned",
|
|
409
|
+
},
|
|
410
|
+
githubIssueAssigned: {
|
|
411
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
412
|
+
type: "github.issue.assigned",
|
|
413
|
+
},
|
|
220
414
|
githubIssueClosed: {
|
|
221
415
|
account: GITHUB_ISSUES_ACCOUNT,
|
|
222
416
|
type: "github.issue.closed",
|
|
223
417
|
},
|
|
418
|
+
githubIssueDeleted: {
|
|
419
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
420
|
+
type: "github.issue.deleted",
|
|
421
|
+
},
|
|
422
|
+
githubIssueDemilestoned: {
|
|
423
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
424
|
+
type: "github.issue.demilestoned",
|
|
425
|
+
},
|
|
426
|
+
githubIssueEdited: {
|
|
427
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
428
|
+
type: "github.issue.edited",
|
|
429
|
+
},
|
|
224
430
|
githubIssueEvent: {
|
|
225
431
|
account: GITHUB_ISSUES_ACCOUNT,
|
|
226
432
|
type: "github.issue.event",
|
|
227
433
|
},
|
|
434
|
+
githubIssueFieldAdded: {
|
|
435
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
436
|
+
type: "github.issue.field-added",
|
|
437
|
+
},
|
|
438
|
+
githubIssueFieldRemoved: {
|
|
439
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
440
|
+
type: "github.issue.field-removed",
|
|
441
|
+
},
|
|
442
|
+
githubIssueLabeled: {
|
|
443
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
444
|
+
type: "github.issue.labeled",
|
|
445
|
+
},
|
|
446
|
+
githubIssueLocked: {
|
|
447
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
448
|
+
type: "github.issue.locked",
|
|
449
|
+
},
|
|
450
|
+
githubIssueMilestoned: {
|
|
451
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
452
|
+
type: "github.issue.milestoned",
|
|
453
|
+
},
|
|
228
454
|
githubIssueOpened: {
|
|
229
455
|
account: GITHUB_ISSUES_ACCOUNT,
|
|
230
456
|
type: "github.issue.opened",
|
|
231
457
|
},
|
|
458
|
+
githubIssuePinned: {
|
|
459
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
460
|
+
type: "github.issue.pinned",
|
|
461
|
+
},
|
|
232
462
|
githubIssueReopened: {
|
|
233
463
|
account: GITHUB_ISSUES_ACCOUNT,
|
|
234
464
|
type: "github.issue.reopened",
|
|
235
465
|
},
|
|
466
|
+
githubIssueTransferred: {
|
|
467
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
468
|
+
type: "github.issue.transferred",
|
|
469
|
+
},
|
|
470
|
+
githubIssueTyped: {
|
|
471
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
472
|
+
type: "github.issue.typed",
|
|
473
|
+
},
|
|
474
|
+
githubIssueUnassigned: {
|
|
475
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
476
|
+
type: "github.issue.unassigned",
|
|
477
|
+
},
|
|
478
|
+
githubIssueUnlabeled: {
|
|
479
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
480
|
+
type: "github.issue.unlabeled",
|
|
481
|
+
},
|
|
482
|
+
githubIssueUnlocked: {
|
|
483
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
484
|
+
type: "github.issue.unlocked",
|
|
485
|
+
},
|
|
486
|
+
githubIssueUnpinned: {
|
|
487
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
488
|
+
type: "github.issue.unpinned",
|
|
489
|
+
},
|
|
490
|
+
githubIssueUntyped: {
|
|
491
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
492
|
+
type: "github.issue.untyped",
|
|
493
|
+
},
|
|
494
|
+
githubPullRequestAssigned: {
|
|
495
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
496
|
+
type: "github.pull-request.assigned",
|
|
497
|
+
},
|
|
498
|
+
githubPullRequestAutoMergeDisabled: {
|
|
499
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
500
|
+
type: "github.pull-request.auto-merge-disabled",
|
|
501
|
+
},
|
|
502
|
+
githubPullRequestAutoMergeEnabled: {
|
|
503
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
504
|
+
type: "github.pull-request.auto-merge-enabled",
|
|
505
|
+
},
|
|
236
506
|
githubPullRequestClosed: {
|
|
237
507
|
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
238
508
|
type: "github.pull-request.closed",
|
|
239
509
|
},
|
|
510
|
+
githubPullRequestConvertedToDraft: {
|
|
511
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
512
|
+
type: "github.pull-request.converted-to-draft",
|
|
513
|
+
},
|
|
514
|
+
githubPullRequestDemilestoned: {
|
|
515
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
516
|
+
type: "github.pull-request.demilestoned",
|
|
517
|
+
},
|
|
518
|
+
githubPullRequestDequeued: {
|
|
519
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
520
|
+
type: "github.pull-request.dequeued",
|
|
521
|
+
},
|
|
522
|
+
githubPullRequestEdited: {
|
|
523
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
524
|
+
type: "github.pull-request.edited",
|
|
525
|
+
},
|
|
526
|
+
githubPullRequestEnqueued: {
|
|
527
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
528
|
+
type: "github.pull-request.enqueued",
|
|
529
|
+
},
|
|
240
530
|
githubPullRequestEvent: {
|
|
241
531
|
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
242
532
|
type: "github.pull-request.event",
|
|
@@ -245,6 +535,18 @@ export const githubTriggerDefinitions = {
|
|
|
245
535
|
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
246
536
|
type: "github.pull-request.merged",
|
|
247
537
|
},
|
|
538
|
+
githubPullRequestLabeled: {
|
|
539
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
540
|
+
type: "github.pull-request.labeled",
|
|
541
|
+
},
|
|
542
|
+
githubPullRequestLocked: {
|
|
543
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
544
|
+
type: "github.pull-request.locked",
|
|
545
|
+
},
|
|
546
|
+
githubPullRequestMilestoned: {
|
|
547
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
548
|
+
type: "github.pull-request.milestoned",
|
|
549
|
+
},
|
|
248
550
|
githubPullRequestOpened: {
|
|
249
551
|
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
250
552
|
type: "github.pull-request.opened",
|
|
@@ -253,6 +555,22 @@ export const githubTriggerDefinitions = {
|
|
|
253
555
|
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
254
556
|
type: "github.pull-request.ready-for-review",
|
|
255
557
|
},
|
|
558
|
+
githubPullRequestReopened: {
|
|
559
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
560
|
+
type: "github.pull-request.reopened",
|
|
561
|
+
},
|
|
562
|
+
githubPullRequestReviewRequestRemoved: {
|
|
563
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
564
|
+
type: "github.pull-request.review-request-removed",
|
|
565
|
+
},
|
|
566
|
+
githubPullRequestReviewRequested: {
|
|
567
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
568
|
+
type: "github.pull-request.review-requested",
|
|
569
|
+
},
|
|
570
|
+
githubPullRequestStacked: {
|
|
571
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
572
|
+
type: "github.pull-request.stacked",
|
|
573
|
+
},
|
|
256
574
|
githubPullRequestReviewApproved: {
|
|
257
575
|
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
258
576
|
type: "github.pull-request-review.approved",
|
|
@@ -266,6 +584,10 @@ export const githubTriggerDefinitions = {
|
|
|
266
584
|
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
267
585
|
type: "github.pull-request-review.dismissed",
|
|
268
586
|
},
|
|
587
|
+
githubPullRequestReviewEdited: {
|
|
588
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
589
|
+
type: "github.pull-request-review.edited",
|
|
590
|
+
},
|
|
269
591
|
githubPullRequestReviewEvent: {
|
|
270
592
|
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
271
593
|
type: "github.pull-request-review.event",
|
|
@@ -294,18 +616,54 @@ export const githubTriggerDefinitions = {
|
|
|
294
616
|
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
295
617
|
type: "github.pull-request.synchronized",
|
|
296
618
|
},
|
|
619
|
+
githubPullRequestUnassigned: {
|
|
620
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
621
|
+
type: "github.pull-request.unassigned",
|
|
622
|
+
},
|
|
623
|
+
githubPullRequestUnlabeled: {
|
|
624
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
625
|
+
type: "github.pull-request.unlabeled",
|
|
626
|
+
},
|
|
627
|
+
githubPullRequestUnlocked: {
|
|
628
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
629
|
+
type: "github.pull-request.unlocked",
|
|
630
|
+
},
|
|
297
631
|
githubPush: {
|
|
298
632
|
account: GITHUB_CONTENTS_ACCOUNT,
|
|
299
633
|
type: "github.push",
|
|
300
634
|
},
|
|
635
|
+
githubReleaseCreated: {
|
|
636
|
+
account: GITHUB_CONTENTS_ACCOUNT,
|
|
637
|
+
type: "github.release.created",
|
|
638
|
+
},
|
|
639
|
+
githubReleaseDeleted: {
|
|
640
|
+
account: GITHUB_CONTENTS_ACCOUNT,
|
|
641
|
+
type: "github.release.deleted",
|
|
642
|
+
},
|
|
643
|
+
githubReleaseEdited: {
|
|
644
|
+
account: GITHUB_CONTENTS_ACCOUNT,
|
|
645
|
+
type: "github.release.edited",
|
|
646
|
+
},
|
|
301
647
|
githubReleaseEvent: {
|
|
302
648
|
account: GITHUB_CONTENTS_ACCOUNT,
|
|
303
649
|
type: "github.release.event",
|
|
304
650
|
},
|
|
651
|
+
githubReleasePrereleased: {
|
|
652
|
+
account: GITHUB_CONTENTS_ACCOUNT,
|
|
653
|
+
type: "github.release.prereleased",
|
|
654
|
+
},
|
|
305
655
|
githubReleasePublished: {
|
|
306
656
|
account: GITHUB_CONTENTS_ACCOUNT,
|
|
307
657
|
type: "github.release.published",
|
|
308
658
|
},
|
|
659
|
+
githubReleaseReleased: {
|
|
660
|
+
account: GITHUB_CONTENTS_ACCOUNT,
|
|
661
|
+
type: "github.release.released",
|
|
662
|
+
},
|
|
663
|
+
githubReleaseUnpublished: {
|
|
664
|
+
account: GITHUB_CONTENTS_ACCOUNT,
|
|
665
|
+
type: "github.release.unpublished",
|
|
666
|
+
},
|
|
309
667
|
githubRefCreated: {
|
|
310
668
|
account: GITHUB_CONTENTS_ACCOUNT,
|
|
311
669
|
type: "github.ref.created",
|
|
@@ -350,6 +708,10 @@ export const githubTriggerDefinitions = {
|
|
|
350
708
|
account: GITHUB_CONTENTS_ACCOUNT,
|
|
351
709
|
type: "github.workflow-dispatch",
|
|
352
710
|
},
|
|
711
|
+
githubWorkflowJobActionRequired: {
|
|
712
|
+
account: GITHUB_ACTIONS_ACCOUNT,
|
|
713
|
+
type: "github.workflow-job.action-required",
|
|
714
|
+
},
|
|
353
715
|
githubWorkflowJobCancelled: {
|
|
354
716
|
account: GITHUB_ACTIONS_ACCOUNT,
|
|
355
717
|
type: "github.workflow-job.cancelled",
|
|
@@ -366,10 +728,18 @@ export const githubTriggerDefinitions = {
|
|
|
366
728
|
account: GITHUB_ACTIONS_ACCOUNT,
|
|
367
729
|
type: "github.workflow-job.failed",
|
|
368
730
|
},
|
|
731
|
+
githubWorkflowJobNeutral: {
|
|
732
|
+
account: GITHUB_ACTIONS_ACCOUNT,
|
|
733
|
+
type: "github.workflow-job.neutral",
|
|
734
|
+
},
|
|
369
735
|
githubWorkflowJobQueued: {
|
|
370
736
|
account: GITHUB_ACTIONS_ACCOUNT,
|
|
371
737
|
type: "github.workflow-job.queued",
|
|
372
738
|
},
|
|
739
|
+
githubWorkflowJobSkipped: {
|
|
740
|
+
account: GITHUB_ACTIONS_ACCOUNT,
|
|
741
|
+
type: "github.workflow-job.skipped",
|
|
742
|
+
},
|
|
373
743
|
githubWorkflowJobStarted: {
|
|
374
744
|
account: GITHUB_ACTIONS_ACCOUNT,
|
|
375
745
|
type: "github.workflow-job.started",
|
|
@@ -386,6 +756,10 @@ export const githubTriggerDefinitions = {
|
|
|
386
756
|
account: GITHUB_ACTIONS_ACCOUNT,
|
|
387
757
|
type: "github.workflow-job.waiting",
|
|
388
758
|
},
|
|
759
|
+
githubWorkflowRunActionRequired: {
|
|
760
|
+
account: GITHUB_ACTIONS_ACCOUNT,
|
|
761
|
+
type: "github.workflow-run.action-required",
|
|
762
|
+
},
|
|
389
763
|
githubWorkflowRunCancelled: {
|
|
390
764
|
account: GITHUB_ACTIONS_ACCOUNT,
|
|
391
765
|
type: "github.workflow-run.cancelled",
|
|
@@ -402,16 +776,36 @@ export const githubTriggerDefinitions = {
|
|
|
402
776
|
account: GITHUB_ACTIONS_ACCOUNT,
|
|
403
777
|
type: "github.workflow-run.failed",
|
|
404
778
|
},
|
|
779
|
+
githubWorkflowRunNeutral: {
|
|
780
|
+
account: GITHUB_ACTIONS_ACCOUNT,
|
|
781
|
+
type: "github.workflow-run.neutral",
|
|
782
|
+
},
|
|
405
783
|
githubWorkflowRunRequested: {
|
|
406
784
|
account: GITHUB_ACTIONS_ACCOUNT,
|
|
407
785
|
type: "github.workflow-run.requested",
|
|
408
786
|
},
|
|
787
|
+
githubWorkflowRunSkipped: {
|
|
788
|
+
account: GITHUB_ACTIONS_ACCOUNT,
|
|
789
|
+
type: "github.workflow-run.skipped",
|
|
790
|
+
},
|
|
791
|
+
githubWorkflowRunStale: {
|
|
792
|
+
account: GITHUB_ACTIONS_ACCOUNT,
|
|
793
|
+
type: "github.workflow-run.stale",
|
|
794
|
+
},
|
|
409
795
|
githubWorkflowRunStarted: {
|
|
410
796
|
account: GITHUB_ACTIONS_ACCOUNT,
|
|
411
797
|
type: "github.workflow-run.started",
|
|
412
798
|
},
|
|
799
|
+
githubWorkflowRunStartupFailed: {
|
|
800
|
+
account: GITHUB_ACTIONS_ACCOUNT,
|
|
801
|
+
type: "github.workflow-run.startup-failed",
|
|
802
|
+
},
|
|
413
803
|
githubWorkflowRunSucceeded: {
|
|
414
804
|
account: GITHUB_ACTIONS_ACCOUNT,
|
|
415
805
|
type: "github.workflow-run.succeeded",
|
|
416
806
|
},
|
|
807
|
+
githubWorkflowRunTimedOut: {
|
|
808
|
+
account: GITHUB_ACTIONS_ACCOUNT,
|
|
809
|
+
type: "github.workflow-run.timed-out",
|
|
810
|
+
},
|
|
417
811
|
} as const satisfies Record<string, TriggerDefinition>
|