@automate.ax/catalog 0.88.2 → 0.88.4
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/dist/triggers/github.js
CHANGED
|
@@ -62,7 +62,159 @@ const GITHUB_CHECKS_WRITE_ACCOUNT = {
|
|
|
62
62
|
],
|
|
63
63
|
serviceId: "github",
|
|
64
64
|
};
|
|
65
|
+
const GITHUB_MERGE_QUEUES_ACCOUNT = {
|
|
66
|
+
connectionOptions: [
|
|
67
|
+
{
|
|
68
|
+
requiredScopes: ["merge_queues:read"],
|
|
69
|
+
},
|
|
70
|
+
],
|
|
71
|
+
serviceId: "github",
|
|
72
|
+
};
|
|
73
|
+
const GITHUB_METADATA_ACCOUNT = {
|
|
74
|
+
connectionOptions: [
|
|
75
|
+
{
|
|
76
|
+
requiredScopes: ["metadata:read"],
|
|
77
|
+
},
|
|
78
|
+
],
|
|
79
|
+
serviceId: "github",
|
|
80
|
+
};
|
|
65
81
|
export const githubTriggerDefinitions = {
|
|
82
|
+
githubCommitCommentCreated: {
|
|
83
|
+
account: GITHUB_CONTENTS_ACCOUNT,
|
|
84
|
+
type: "github.commit-comment.created",
|
|
85
|
+
},
|
|
86
|
+
githubCommitCommentEvent: {
|
|
87
|
+
account: GITHUB_CONTENTS_ACCOUNT,
|
|
88
|
+
type: "github.commit-comment.event",
|
|
89
|
+
},
|
|
90
|
+
githubDeploymentProtectionRuleEvent: {
|
|
91
|
+
account: GITHUB_DEPLOYMENTS_ACCOUNT,
|
|
92
|
+
type: "github.deployment-protection-rule.event",
|
|
93
|
+
},
|
|
94
|
+
githubDeploymentProtectionRuleRequested: {
|
|
95
|
+
account: GITHUB_DEPLOYMENTS_ACCOUNT,
|
|
96
|
+
type: "github.deployment-protection-rule.requested",
|
|
97
|
+
},
|
|
98
|
+
githubDeploymentReviewApproved: {
|
|
99
|
+
account: GITHUB_DEPLOYMENTS_ACCOUNT,
|
|
100
|
+
type: "github.deployment-review.approved",
|
|
101
|
+
},
|
|
102
|
+
githubDeploymentReviewEvent: {
|
|
103
|
+
account: GITHUB_DEPLOYMENTS_ACCOUNT,
|
|
104
|
+
type: "github.deployment-review.event",
|
|
105
|
+
},
|
|
106
|
+
githubDeploymentReviewRejected: {
|
|
107
|
+
account: GITHUB_DEPLOYMENTS_ACCOUNT,
|
|
108
|
+
type: "github.deployment-review.rejected",
|
|
109
|
+
},
|
|
110
|
+
githubDeploymentReviewRequested: {
|
|
111
|
+
account: GITHUB_DEPLOYMENTS_ACCOUNT,
|
|
112
|
+
type: "github.deployment-review.requested",
|
|
113
|
+
},
|
|
114
|
+
githubIssueDependencyBlockedByAdded: {
|
|
115
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
116
|
+
type: "github.issue-dependencies.blocked-by-added",
|
|
117
|
+
},
|
|
118
|
+
githubIssueDependencyBlockedByRemoved: {
|
|
119
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
120
|
+
type: "github.issue-dependencies.blocked-by-removed",
|
|
121
|
+
},
|
|
122
|
+
githubIssueDependencyBlockingAdded: {
|
|
123
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
124
|
+
type: "github.issue-dependencies.blocking-added",
|
|
125
|
+
},
|
|
126
|
+
githubIssueDependencyBlockingRemoved: {
|
|
127
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
128
|
+
type: "github.issue-dependencies.blocking-removed",
|
|
129
|
+
},
|
|
130
|
+
githubIssueDependenciesEvent: {
|
|
131
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
132
|
+
type: "github.issue-dependencies.event",
|
|
133
|
+
},
|
|
134
|
+
githubMergeGroupChecksRequested: {
|
|
135
|
+
account: GITHUB_MERGE_QUEUES_ACCOUNT,
|
|
136
|
+
type: "github.merge-group.checks-requested",
|
|
137
|
+
},
|
|
138
|
+
githubMergeGroupDestroyed: {
|
|
139
|
+
account: GITHUB_MERGE_QUEUES_ACCOUNT,
|
|
140
|
+
type: "github.merge-group.destroyed",
|
|
141
|
+
},
|
|
142
|
+
githubMergeGroupEvent: {
|
|
143
|
+
account: GITHUB_MERGE_QUEUES_ACCOUNT,
|
|
144
|
+
type: "github.merge-group.event",
|
|
145
|
+
},
|
|
146
|
+
githubParentIssueAdded: {
|
|
147
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
148
|
+
type: "github.parent-issue.added",
|
|
149
|
+
},
|
|
150
|
+
githubParentIssueRemoved: {
|
|
151
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
152
|
+
type: "github.parent-issue.removed",
|
|
153
|
+
},
|
|
154
|
+
githubPullRequestReviewThreadEvent: {
|
|
155
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
156
|
+
type: "github.pull-request-review-thread.event",
|
|
157
|
+
},
|
|
158
|
+
githubPullRequestReviewThreadResolved: {
|
|
159
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
160
|
+
type: "github.pull-request-review-thread.resolved",
|
|
161
|
+
},
|
|
162
|
+
githubPullRequestReviewThreadUnresolved: {
|
|
163
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
164
|
+
type: "github.pull-request-review-thread.unresolved",
|
|
165
|
+
},
|
|
166
|
+
githubRepositoryArchived: {
|
|
167
|
+
account: GITHUB_METADATA_ACCOUNT,
|
|
168
|
+
type: "github.repository.archived",
|
|
169
|
+
},
|
|
170
|
+
githubRepositoryCreated: {
|
|
171
|
+
account: GITHUB_METADATA_ACCOUNT,
|
|
172
|
+
type: "github.repository.created",
|
|
173
|
+
},
|
|
174
|
+
githubRepositoryDeleted: {
|
|
175
|
+
account: GITHUB_METADATA_ACCOUNT,
|
|
176
|
+
type: "github.repository.deleted",
|
|
177
|
+
},
|
|
178
|
+
githubRepositoryEdited: {
|
|
179
|
+
account: GITHUB_METADATA_ACCOUNT,
|
|
180
|
+
type: "github.repository.edited",
|
|
181
|
+
},
|
|
182
|
+
githubRepositoryEvent: {
|
|
183
|
+
account: GITHUB_METADATA_ACCOUNT,
|
|
184
|
+
type: "github.repository.event",
|
|
185
|
+
},
|
|
186
|
+
githubRepositoryPrivatized: {
|
|
187
|
+
account: GITHUB_METADATA_ACCOUNT,
|
|
188
|
+
type: "github.repository.privatized",
|
|
189
|
+
},
|
|
190
|
+
githubRepositoryPublicized: {
|
|
191
|
+
account: GITHUB_METADATA_ACCOUNT,
|
|
192
|
+
type: "github.repository.publicized",
|
|
193
|
+
},
|
|
194
|
+
githubRepositoryRenamed: {
|
|
195
|
+
account: GITHUB_METADATA_ACCOUNT,
|
|
196
|
+
type: "github.repository.renamed",
|
|
197
|
+
},
|
|
198
|
+
githubRepositoryTransferred: {
|
|
199
|
+
account: GITHUB_METADATA_ACCOUNT,
|
|
200
|
+
type: "github.repository.transferred",
|
|
201
|
+
},
|
|
202
|
+
githubRepositoryUnarchived: {
|
|
203
|
+
account: GITHUB_METADATA_ACCOUNT,
|
|
204
|
+
type: "github.repository.unarchived",
|
|
205
|
+
},
|
|
206
|
+
githubSubIssueAdded: {
|
|
207
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
208
|
+
type: "github.sub-issue.added",
|
|
209
|
+
},
|
|
210
|
+
githubSubIssueRemoved: {
|
|
211
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
212
|
+
type: "github.sub-issue.removed",
|
|
213
|
+
},
|
|
214
|
+
githubSubIssuesEvent: {
|
|
215
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
216
|
+
type: "github.sub-issues.event",
|
|
217
|
+
},
|
|
66
218
|
githubBranchCreated: {
|
|
67
219
|
account: GITHUB_CONTENTS_ACCOUNT,
|
|
68
220
|
type: "github.branch.created",
|
|
@@ -95,6 +247,14 @@ export const githubTriggerDefinitions = {
|
|
|
95
247
|
account: GITHUB_CHECKS_ACCOUNT,
|
|
96
248
|
type: "github.check-run.failed",
|
|
97
249
|
},
|
|
250
|
+
githubCheckRunNeutral: {
|
|
251
|
+
account: GITHUB_CHECKS_ACCOUNT,
|
|
252
|
+
type: "github.check-run.neutral",
|
|
253
|
+
},
|
|
254
|
+
githubCheckRunPending: {
|
|
255
|
+
account: GITHUB_CHECKS_ACCOUNT,
|
|
256
|
+
type: "github.check-run.pending",
|
|
257
|
+
},
|
|
98
258
|
githubCheckRunRerequested: {
|
|
99
259
|
account: GITHUB_CHECKS_WRITE_ACCOUNT,
|
|
100
260
|
type: "github.check-run.rerequested",
|
|
@@ -103,6 +263,14 @@ export const githubTriggerDefinitions = {
|
|
|
103
263
|
account: GITHUB_CHECKS_WRITE_ACCOUNT,
|
|
104
264
|
type: "github.check-run.requested-action",
|
|
105
265
|
},
|
|
266
|
+
githubCheckRunSkipped: {
|
|
267
|
+
account: GITHUB_CHECKS_ACCOUNT,
|
|
268
|
+
type: "github.check-run.skipped",
|
|
269
|
+
},
|
|
270
|
+
githubCheckRunStale: {
|
|
271
|
+
account: GITHUB_CHECKS_ACCOUNT,
|
|
272
|
+
type: "github.check-run.stale",
|
|
273
|
+
},
|
|
106
274
|
githubCheckRunSucceeded: {
|
|
107
275
|
account: GITHUB_CHECKS_ACCOUNT,
|
|
108
276
|
type: "github.check-run.succeeded",
|
|
@@ -115,6 +283,10 @@ export const githubTriggerDefinitions = {
|
|
|
115
283
|
account: GITHUB_CHECKS_ACCOUNT,
|
|
116
284
|
type: "github.check-run.timed-out",
|
|
117
285
|
},
|
|
286
|
+
githubCheckRunWaiting: {
|
|
287
|
+
account: GITHUB_CHECKS_ACCOUNT,
|
|
288
|
+
type: "github.check-run.waiting",
|
|
289
|
+
},
|
|
118
290
|
githubCheckSuiteActionRequired: {
|
|
119
291
|
account: GITHUB_CHECKS_ACCOUNT,
|
|
120
292
|
type: "github.check-suite.action-required",
|
|
@@ -135,6 +307,10 @@ export const githubTriggerDefinitions = {
|
|
|
135
307
|
account: GITHUB_CHECKS_ACCOUNT,
|
|
136
308
|
type: "github.check-suite.failed",
|
|
137
309
|
},
|
|
310
|
+
githubCheckSuiteNeutral: {
|
|
311
|
+
account: GITHUB_CHECKS_ACCOUNT,
|
|
312
|
+
type: "github.check-suite.neutral",
|
|
313
|
+
},
|
|
138
314
|
githubCheckSuiteRerequested: {
|
|
139
315
|
account: GITHUB_CHECKS_WRITE_ACCOUNT,
|
|
140
316
|
type: "github.check-suite.rerequested",
|
|
@@ -143,6 +319,14 @@ export const githubTriggerDefinitions = {
|
|
|
143
319
|
account: GITHUB_CHECKS_WRITE_ACCOUNT,
|
|
144
320
|
type: "github.check-suite.requested",
|
|
145
321
|
},
|
|
322
|
+
githubCheckSuiteSkipped: {
|
|
323
|
+
account: GITHUB_CHECKS_ACCOUNT,
|
|
324
|
+
type: "github.check-suite.skipped",
|
|
325
|
+
},
|
|
326
|
+
githubCheckSuiteStale: {
|
|
327
|
+
account: GITHUB_CHECKS_ACCOUNT,
|
|
328
|
+
type: "github.check-suite.stale",
|
|
329
|
+
},
|
|
146
330
|
githubCheckSuiteSucceeded: {
|
|
147
331
|
account: GITHUB_CHECKS_ACCOUNT,
|
|
148
332
|
type: "github.check-suite.succeeded",
|
|
@@ -171,10 +355,6 @@ export const githubTriggerDefinitions = {
|
|
|
171
355
|
account: GITHUB_DEPLOYMENTS_ACCOUNT,
|
|
172
356
|
type: "github.deployment-status.failed",
|
|
173
357
|
},
|
|
174
|
-
githubDeploymentStatusInactive: {
|
|
175
|
-
account: GITHUB_DEPLOYMENTS_ACCOUNT,
|
|
176
|
-
type: "github.deployment-status.inactive",
|
|
177
|
-
},
|
|
178
358
|
githubDeploymentStatusPending: {
|
|
179
359
|
account: GITHUB_DEPLOYMENTS_ACCOUNT,
|
|
180
360
|
type: "github.deployment-status.pending",
|
|
@@ -207,26 +387,134 @@ export const githubTriggerDefinitions = {
|
|
|
207
387
|
account: GITHUB_ISSUES_ACCOUNT,
|
|
208
388
|
type: "github.issue-comment.event",
|
|
209
389
|
},
|
|
390
|
+
githubIssueCommentPinned: {
|
|
391
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
392
|
+
type: "github.issue-comment.pinned",
|
|
393
|
+
},
|
|
394
|
+
githubIssueCommentUnpinned: {
|
|
395
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
396
|
+
type: "github.issue-comment.unpinned",
|
|
397
|
+
},
|
|
398
|
+
githubIssueAssigned: {
|
|
399
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
400
|
+
type: "github.issue.assigned",
|
|
401
|
+
},
|
|
210
402
|
githubIssueClosed: {
|
|
211
403
|
account: GITHUB_ISSUES_ACCOUNT,
|
|
212
404
|
type: "github.issue.closed",
|
|
213
405
|
},
|
|
406
|
+
githubIssueDeleted: {
|
|
407
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
408
|
+
type: "github.issue.deleted",
|
|
409
|
+
},
|
|
410
|
+
githubIssueDemilestoned: {
|
|
411
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
412
|
+
type: "github.issue.demilestoned",
|
|
413
|
+
},
|
|
414
|
+
githubIssueEdited: {
|
|
415
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
416
|
+
type: "github.issue.edited",
|
|
417
|
+
},
|
|
214
418
|
githubIssueEvent: {
|
|
215
419
|
account: GITHUB_ISSUES_ACCOUNT,
|
|
216
420
|
type: "github.issue.event",
|
|
217
421
|
},
|
|
422
|
+
githubIssueFieldAdded: {
|
|
423
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
424
|
+
type: "github.issue.field-added",
|
|
425
|
+
},
|
|
426
|
+
githubIssueFieldRemoved: {
|
|
427
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
428
|
+
type: "github.issue.field-removed",
|
|
429
|
+
},
|
|
430
|
+
githubIssueLabeled: {
|
|
431
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
432
|
+
type: "github.issue.labeled",
|
|
433
|
+
},
|
|
434
|
+
githubIssueLocked: {
|
|
435
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
436
|
+
type: "github.issue.locked",
|
|
437
|
+
},
|
|
438
|
+
githubIssueMilestoned: {
|
|
439
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
440
|
+
type: "github.issue.milestoned",
|
|
441
|
+
},
|
|
218
442
|
githubIssueOpened: {
|
|
219
443
|
account: GITHUB_ISSUES_ACCOUNT,
|
|
220
444
|
type: "github.issue.opened",
|
|
221
445
|
},
|
|
446
|
+
githubIssuePinned: {
|
|
447
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
448
|
+
type: "github.issue.pinned",
|
|
449
|
+
},
|
|
222
450
|
githubIssueReopened: {
|
|
223
451
|
account: GITHUB_ISSUES_ACCOUNT,
|
|
224
452
|
type: "github.issue.reopened",
|
|
225
453
|
},
|
|
454
|
+
githubIssueTransferred: {
|
|
455
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
456
|
+
type: "github.issue.transferred",
|
|
457
|
+
},
|
|
458
|
+
githubIssueTyped: {
|
|
459
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
460
|
+
type: "github.issue.typed",
|
|
461
|
+
},
|
|
462
|
+
githubIssueUnassigned: {
|
|
463
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
464
|
+
type: "github.issue.unassigned",
|
|
465
|
+
},
|
|
466
|
+
githubIssueUnlabeled: {
|
|
467
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
468
|
+
type: "github.issue.unlabeled",
|
|
469
|
+
},
|
|
470
|
+
githubIssueUnlocked: {
|
|
471
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
472
|
+
type: "github.issue.unlocked",
|
|
473
|
+
},
|
|
474
|
+
githubIssueUnpinned: {
|
|
475
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
476
|
+
type: "github.issue.unpinned",
|
|
477
|
+
},
|
|
478
|
+
githubIssueUntyped: {
|
|
479
|
+
account: GITHUB_ISSUES_ACCOUNT,
|
|
480
|
+
type: "github.issue.untyped",
|
|
481
|
+
},
|
|
482
|
+
githubPullRequestAssigned: {
|
|
483
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
484
|
+
type: "github.pull-request.assigned",
|
|
485
|
+
},
|
|
486
|
+
githubPullRequestAutoMergeDisabled: {
|
|
487
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
488
|
+
type: "github.pull-request.auto-merge-disabled",
|
|
489
|
+
},
|
|
490
|
+
githubPullRequestAutoMergeEnabled: {
|
|
491
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
492
|
+
type: "github.pull-request.auto-merge-enabled",
|
|
493
|
+
},
|
|
226
494
|
githubPullRequestClosed: {
|
|
227
495
|
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
228
496
|
type: "github.pull-request.closed",
|
|
229
497
|
},
|
|
498
|
+
githubPullRequestConvertedToDraft: {
|
|
499
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
500
|
+
type: "github.pull-request.converted-to-draft",
|
|
501
|
+
},
|
|
502
|
+
githubPullRequestDemilestoned: {
|
|
503
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
504
|
+
type: "github.pull-request.demilestoned",
|
|
505
|
+
},
|
|
506
|
+
githubPullRequestDequeued: {
|
|
507
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
508
|
+
type: "github.pull-request.dequeued",
|
|
509
|
+
},
|
|
510
|
+
githubPullRequestEdited: {
|
|
511
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
512
|
+
type: "github.pull-request.edited",
|
|
513
|
+
},
|
|
514
|
+
githubPullRequestEnqueued: {
|
|
515
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
516
|
+
type: "github.pull-request.enqueued",
|
|
517
|
+
},
|
|
230
518
|
githubPullRequestEvent: {
|
|
231
519
|
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
232
520
|
type: "github.pull-request.event",
|
|
@@ -235,6 +523,18 @@ export const githubTriggerDefinitions = {
|
|
|
235
523
|
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
236
524
|
type: "github.pull-request.merged",
|
|
237
525
|
},
|
|
526
|
+
githubPullRequestLabeled: {
|
|
527
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
528
|
+
type: "github.pull-request.labeled",
|
|
529
|
+
},
|
|
530
|
+
githubPullRequestLocked: {
|
|
531
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
532
|
+
type: "github.pull-request.locked",
|
|
533
|
+
},
|
|
534
|
+
githubPullRequestMilestoned: {
|
|
535
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
536
|
+
type: "github.pull-request.milestoned",
|
|
537
|
+
},
|
|
238
538
|
githubPullRequestOpened: {
|
|
239
539
|
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
240
540
|
type: "github.pull-request.opened",
|
|
@@ -243,6 +543,22 @@ export const githubTriggerDefinitions = {
|
|
|
243
543
|
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
244
544
|
type: "github.pull-request.ready-for-review",
|
|
245
545
|
},
|
|
546
|
+
githubPullRequestReopened: {
|
|
547
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
548
|
+
type: "github.pull-request.reopened",
|
|
549
|
+
},
|
|
550
|
+
githubPullRequestReviewRequestRemoved: {
|
|
551
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
552
|
+
type: "github.pull-request.review-request-removed",
|
|
553
|
+
},
|
|
554
|
+
githubPullRequestReviewRequested: {
|
|
555
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
556
|
+
type: "github.pull-request.review-requested",
|
|
557
|
+
},
|
|
558
|
+
githubPullRequestStacked: {
|
|
559
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
560
|
+
type: "github.pull-request.stacked",
|
|
561
|
+
},
|
|
246
562
|
githubPullRequestReviewApproved: {
|
|
247
563
|
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
248
564
|
type: "github.pull-request-review.approved",
|
|
@@ -256,6 +572,10 @@ export const githubTriggerDefinitions = {
|
|
|
256
572
|
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
257
573
|
type: "github.pull-request-review.dismissed",
|
|
258
574
|
},
|
|
575
|
+
githubPullRequestReviewEdited: {
|
|
576
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
577
|
+
type: "github.pull-request-review.edited",
|
|
578
|
+
},
|
|
259
579
|
githubPullRequestReviewEvent: {
|
|
260
580
|
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
261
581
|
type: "github.pull-request-review.event",
|
|
@@ -284,18 +604,54 @@ export const githubTriggerDefinitions = {
|
|
|
284
604
|
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
285
605
|
type: "github.pull-request.synchronized",
|
|
286
606
|
},
|
|
607
|
+
githubPullRequestUnassigned: {
|
|
608
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
609
|
+
type: "github.pull-request.unassigned",
|
|
610
|
+
},
|
|
611
|
+
githubPullRequestUnlabeled: {
|
|
612
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
613
|
+
type: "github.pull-request.unlabeled",
|
|
614
|
+
},
|
|
615
|
+
githubPullRequestUnlocked: {
|
|
616
|
+
account: GITHUB_PULL_REQUESTS_ACCOUNT,
|
|
617
|
+
type: "github.pull-request.unlocked",
|
|
618
|
+
},
|
|
287
619
|
githubPush: {
|
|
288
620
|
account: GITHUB_CONTENTS_ACCOUNT,
|
|
289
621
|
type: "github.push",
|
|
290
622
|
},
|
|
623
|
+
githubReleaseCreated: {
|
|
624
|
+
account: GITHUB_CONTENTS_ACCOUNT,
|
|
625
|
+
type: "github.release.created",
|
|
626
|
+
},
|
|
627
|
+
githubReleaseDeleted: {
|
|
628
|
+
account: GITHUB_CONTENTS_ACCOUNT,
|
|
629
|
+
type: "github.release.deleted",
|
|
630
|
+
},
|
|
631
|
+
githubReleaseEdited: {
|
|
632
|
+
account: GITHUB_CONTENTS_ACCOUNT,
|
|
633
|
+
type: "github.release.edited",
|
|
634
|
+
},
|
|
291
635
|
githubReleaseEvent: {
|
|
292
636
|
account: GITHUB_CONTENTS_ACCOUNT,
|
|
293
637
|
type: "github.release.event",
|
|
294
638
|
},
|
|
639
|
+
githubReleasePrereleased: {
|
|
640
|
+
account: GITHUB_CONTENTS_ACCOUNT,
|
|
641
|
+
type: "github.release.prereleased",
|
|
642
|
+
},
|
|
295
643
|
githubReleasePublished: {
|
|
296
644
|
account: GITHUB_CONTENTS_ACCOUNT,
|
|
297
645
|
type: "github.release.published",
|
|
298
646
|
},
|
|
647
|
+
githubReleaseReleased: {
|
|
648
|
+
account: GITHUB_CONTENTS_ACCOUNT,
|
|
649
|
+
type: "github.release.released",
|
|
650
|
+
},
|
|
651
|
+
githubReleaseUnpublished: {
|
|
652
|
+
account: GITHUB_CONTENTS_ACCOUNT,
|
|
653
|
+
type: "github.release.unpublished",
|
|
654
|
+
},
|
|
299
655
|
githubRefCreated: {
|
|
300
656
|
account: GITHUB_CONTENTS_ACCOUNT,
|
|
301
657
|
type: "github.ref.created",
|
|
@@ -340,6 +696,10 @@ export const githubTriggerDefinitions = {
|
|
|
340
696
|
account: GITHUB_CONTENTS_ACCOUNT,
|
|
341
697
|
type: "github.workflow-dispatch",
|
|
342
698
|
},
|
|
699
|
+
githubWorkflowJobActionRequired: {
|
|
700
|
+
account: GITHUB_ACTIONS_ACCOUNT,
|
|
701
|
+
type: "github.workflow-job.action-required",
|
|
702
|
+
},
|
|
343
703
|
githubWorkflowJobCancelled: {
|
|
344
704
|
account: GITHUB_ACTIONS_ACCOUNT,
|
|
345
705
|
type: "github.workflow-job.cancelled",
|
|
@@ -356,10 +716,18 @@ export const githubTriggerDefinitions = {
|
|
|
356
716
|
account: GITHUB_ACTIONS_ACCOUNT,
|
|
357
717
|
type: "github.workflow-job.failed",
|
|
358
718
|
},
|
|
719
|
+
githubWorkflowJobNeutral: {
|
|
720
|
+
account: GITHUB_ACTIONS_ACCOUNT,
|
|
721
|
+
type: "github.workflow-job.neutral",
|
|
722
|
+
},
|
|
359
723
|
githubWorkflowJobQueued: {
|
|
360
724
|
account: GITHUB_ACTIONS_ACCOUNT,
|
|
361
725
|
type: "github.workflow-job.queued",
|
|
362
726
|
},
|
|
727
|
+
githubWorkflowJobSkipped: {
|
|
728
|
+
account: GITHUB_ACTIONS_ACCOUNT,
|
|
729
|
+
type: "github.workflow-job.skipped",
|
|
730
|
+
},
|
|
363
731
|
githubWorkflowJobStarted: {
|
|
364
732
|
account: GITHUB_ACTIONS_ACCOUNT,
|
|
365
733
|
type: "github.workflow-job.started",
|
|
@@ -376,6 +744,10 @@ export const githubTriggerDefinitions = {
|
|
|
376
744
|
account: GITHUB_ACTIONS_ACCOUNT,
|
|
377
745
|
type: "github.workflow-job.waiting",
|
|
378
746
|
},
|
|
747
|
+
githubWorkflowRunActionRequired: {
|
|
748
|
+
account: GITHUB_ACTIONS_ACCOUNT,
|
|
749
|
+
type: "github.workflow-run.action-required",
|
|
750
|
+
},
|
|
379
751
|
githubWorkflowRunCancelled: {
|
|
380
752
|
account: GITHUB_ACTIONS_ACCOUNT,
|
|
381
753
|
type: "github.workflow-run.cancelled",
|
|
@@ -392,16 +764,36 @@ export const githubTriggerDefinitions = {
|
|
|
392
764
|
account: GITHUB_ACTIONS_ACCOUNT,
|
|
393
765
|
type: "github.workflow-run.failed",
|
|
394
766
|
},
|
|
767
|
+
githubWorkflowRunNeutral: {
|
|
768
|
+
account: GITHUB_ACTIONS_ACCOUNT,
|
|
769
|
+
type: "github.workflow-run.neutral",
|
|
770
|
+
},
|
|
395
771
|
githubWorkflowRunRequested: {
|
|
396
772
|
account: GITHUB_ACTIONS_ACCOUNT,
|
|
397
773
|
type: "github.workflow-run.requested",
|
|
398
774
|
},
|
|
775
|
+
githubWorkflowRunSkipped: {
|
|
776
|
+
account: GITHUB_ACTIONS_ACCOUNT,
|
|
777
|
+
type: "github.workflow-run.skipped",
|
|
778
|
+
},
|
|
779
|
+
githubWorkflowRunStale: {
|
|
780
|
+
account: GITHUB_ACTIONS_ACCOUNT,
|
|
781
|
+
type: "github.workflow-run.stale",
|
|
782
|
+
},
|
|
399
783
|
githubWorkflowRunStarted: {
|
|
400
784
|
account: GITHUB_ACTIONS_ACCOUNT,
|
|
401
785
|
type: "github.workflow-run.started",
|
|
402
786
|
},
|
|
787
|
+
githubWorkflowRunStartupFailed: {
|
|
788
|
+
account: GITHUB_ACTIONS_ACCOUNT,
|
|
789
|
+
type: "github.workflow-run.startup-failed",
|
|
790
|
+
},
|
|
403
791
|
githubWorkflowRunSucceeded: {
|
|
404
792
|
account: GITHUB_ACTIONS_ACCOUNT,
|
|
405
793
|
type: "github.workflow-run.succeeded",
|
|
406
794
|
},
|
|
795
|
+
githubWorkflowRunTimedOut: {
|
|
796
|
+
account: GITHUB_ACTIONS_ACCOUNT,
|
|
797
|
+
type: "github.workflow-run.timed-out",
|
|
798
|
+
},
|
|
407
799
|
};
|