-
Notifications
You must be signed in to change notification settings - Fork 67.2k
Expand file tree
/
Copy pathuser.json
More file actions
1977 lines (1977 loc) · 82.4 KB
/
user.json
File metadata and controls
1977 lines (1977 loc) · 82.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"action": "account.billing_date_change",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "account.plan_change",
"description": "The account's plan changed.",
"docs_reference_links": "/billing/managing-the-plan-for-your-github-account/about-billing-for-plans"
},
{
"action": "account_recovery_token.confirm",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "account_recovery_token.destroy",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "account_recovery_token.recover",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "actions_cache.delete",
"description": "A GitHub Actions cache was deleted using the REST API.",
"docs_reference_links": "N/A"
},
{
"action": "artifact.destroy",
"description": "A workflow run artifact was manually deleted.",
"docs_reference_links": "N/A"
},
{
"action": "billing.change_billing_type",
"description": "The way the account pays for GitHub was changed.",
"docs_reference_links": "/billing/managing-your-github-billing-settings/adding-or-editing-a-payment-method"
},
{
"action": "billing.change_email",
"description": "The billing email address changed.",
"docs_reference_links": "/billing/managing-your-github-billing-settings/setting-your-billing-email"
},
{
"action": "billing.lock",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "billing.unlock",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "billing.update_bill_cycle_day",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "business.security_center_export_code_scanning_metrics",
"description": "A CSV export was requested on the \"CodeQL pull request alerts\" page.",
"docs_reference_links": "N/A"
},
{
"action": "business.security_center_export_coverage",
"description": "A CSV export was requested on the \"Coverage\" page.",
"docs_reference_links": "N/A"
},
{
"action": "business.security_center_export_overview_dashboard",
"description": "A CSV export was requested on the \"Overview Dashboard\" page.",
"docs_reference_links": "N/A"
},
{
"action": "business.security_center_export_risk",
"description": "A CSV export was requested on the \"Risk\" page.",
"docs_reference_links": "N/A"
},
{
"action": "business.set_actions_fork_pr_approvals_policy",
"description": "The policy for requiring approvals for workflows from public forks was changed for an enterprise.",
"docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise#enforcing-a-policy-for-fork-pull-requests-in-your-enterprise"
},
{
"action": "business.set_actions_private_fork_pr_approvals_policy",
"description": "The policy for requiring approval for fork pull request workflows from collaborators without write access to private repos was changed for an enterprise.",
"docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise#enforcing-a-policy-for-fork-pull-requests-in-private-repositories"
},
{
"action": "business.set_actions_retention_limit",
"description": "The retention period for GitHub Actions artifacts and logs was changed for an enterprise.",
"docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise#enforcing-a-policy-for-artifact-and-log-retention-in-your-enterprise"
},
{
"action": "business.set_default_workflow_permissions",
"description": "The default permissions granted to the GITHUB_TOKEN when running workflows were changed for an enterprise.",
"docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise#enforcing-a-policy-for-workflow-permissions-in-your-enterprise"
},
{
"action": "business.set_fork_pr_workflows_policy",
"description": "The policy for fork pull request workflows was changed for an enterprise.",
"docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise#enforcing-a-policy-for-fork-pull-requests-in-your-enterprise"
},
{
"action": "business.set_workflow_permission_can_approve_pr",
"description": "The policy for allowing GitHub Actions to create and approve pull requests was changed for an enterprise.",
"docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise#preventing-github-actions-from-creating-or-approving-pull-requests"
},
{
"action": "checks.auto_trigger_disabled",
"description": "Automatic creation of check suites was disabled on a repository in the organization or enterprise.",
"docs_reference_links": "/rest/checks#update-repository-preferences-for-check-suites"
},
{
"action": "checks.auto_trigger_enabled",
"description": "Automatic creation of check suites was enabled on a repository in the organization or enterprise.",
"docs_reference_links": "/rest/checks#update-repository-preferences-for-check-suites"
},
{
"action": "checks.delete_logs",
"description": "Logs in a check suite were deleted.",
"docs_reference_links": "N/A"
},
{
"action": "codespaces.allow_permissions",
"description": "A codespace using custom permissions from its devcontainer.json file was launched.",
"docs_reference_links": "N/A"
},
{
"action": "codespaces.connect",
"description": "Credentials for a codespace were refreshed.",
"docs_reference_links": "N/A"
},
{
"action": "codespaces.create",
"description": "A codespace was created",
"docs_reference_links": "/codespaces/developing-in-codespaces/creating-a-codespace-for-a-repository"
},
{
"action": "codespaces.destroy",
"description": "A user deleted a codespace.",
"docs_reference_links": "/codespaces/developing-in-codespaces/deleting-a-codespace"
},
{
"action": "codespaces.export_environment",
"description": "A codespace was exported to a branch on GitHub.",
"docs_reference_links": "N/A"
},
{
"action": "codespaces.restore",
"description": "A codespace was restored.",
"docs_reference_links": "N/A"
},
{
"action": "codespaces.start_environment",
"description": "A codespace was started.",
"docs_reference_links": "N/A"
},
{
"action": "codespaces.suspend_environment",
"description": "A codespace was stopped.",
"docs_reference_links": "N/A"
},
{
"action": "codespaces.trusted_repositories_access_update",
"description": "A personal account's access and security setting for Codespaces were updated.",
"docs_reference_links": "/codespaces/managing-codespaces-for-your-organization/managing-repository-access-for-your-organizations-codespaces"
},
{
"action": "copilot.cfb_seat_added",
"description": "A Copilot Business or Copilot Enterprise seat was added for a user and they have received access to GitHub Copilot. This can occur as the result of directly assigning a seat for a user, assigning a seat for a team, or setting the organization to allow access for all members.",
"docs_reference_links": "N/A"
},
{
"action": "copilot.cfb_seat_assignment_created",
"description": "A Copilot Business or Copilot Enterprise seat assignment was newly created for a user or a team, and seats are being created.",
"docs_reference_links": "/copilot/overview-of-github-copilot/about-github-copilot-for-business"
},
{
"action": "copilot.cfb_seat_assignment_refreshed",
"description": "A seat assignment that was previously pending cancellation was re-assigned and the user will retain access to Copilot.",
"docs_reference_links": "N/A"
},
{
"action": "copilot.cfb_seat_assignment_reused",
"description": "A Copilot Business or Copilot Enterprise seat assignment was re-created for a user who already had a seat with no pending cancellation date, and the user will retain access to Copilot.",
"docs_reference_links": "N/A"
},
{
"action": "copilot.cfb_seat_assignment_unassigned",
"description": "A user or team's Copilot Business or Copilot Enterprise seat assignment was unassigned, and the user(s) will lose access to Copilot at the end of the current billing cycle.",
"docs_reference_links": "N/A"
},
{
"action": "copilot.cfb_seat_cancelled",
"description": "A user's Copilot Business or Copilot Enterprise seat was canceled, and the user no longer has access to Copilot.",
"docs_reference_links": "N/A"
},
{
"action": "copilot.cfb_seat_cancelled_by_staff",
"description": "A user's Copilot Business or Copilot Enterprise seat was canceled manually by GitHub staff, and the user no longer has access to Copilot.",
"docs_reference_links": "N/A"
},
{
"action": "copilot.swe_agent_repo_disabled",
"description": "Specific repositories were disabled from using Copilot coding agent.",
"docs_reference_links": "N/A"
},
{
"action": "copilot.swe_agent_repo_enabled",
"description": "Specific repositories were enabled to use Copilot coding agent.",
"docs_reference_links": "N/A"
},
{
"action": "copilot.swe_agent_repo_enablement_updated",
"description": "Copilot coding agent access was updated for the organization's or user's repositories.",
"docs_reference_links": "N/A"
},
{
"action": "custom_hosted_runner.create",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "custom_hosted_runner.destroy",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "custom_hosted_runner.update",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "dependabot_alerts.disable",
"description": "Dependabot alerts were disabled for all existing repositories.",
"docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization#enabling-or-disabling-a-feature-for-all-existing-repositories"
},
{
"action": "dependabot_alerts.enable",
"description": "Dependabot alerts were enabled for all existing repositories.",
"docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization#enabling-or-disabling-a-feature-for-all-existing-repositories"
},
{
"action": "dependabot_alerts_new_repos.disable",
"description": "Dependabot alerts were disabled for all new repositories.",
"docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization#enabling-or-disabling-a-feature-automatically-when-new-repositories-are-added"
},
{
"action": "dependabot_alerts_new_repos.enable",
"description": "Dependabot alerts were enabled for all new repositories.",
"docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization#enabling-or-disabling-a-feature-automatically-when-new-repositories-are-added"
},
{
"action": "dependabot_repository_access.repositories_updated",
"description": "The repositories that Dependabot can access were updated.",
"docs_reference_links": "N/A"
},
{
"action": "dependabot_security_updates.disable",
"description": "Dependabot security updates were disabled for all existing repositories.",
"docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization"
},
{
"action": "dependabot_security_updates.enable",
"description": "Dependabot security updates were enabled for all existing repositories.",
"docs_reference_links": "N/A"
},
{
"action": "dependabot_security_updates_new_repos.disable",
"description": " Dependabot security updates were disabled for all new repositories.",
"docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization"
},
{
"action": "dependabot_security_updates_new_repos.enable",
"description": "Dependabot security updates were enabled for all new repositories.",
"docs_reference_links": "N/A"
},
{
"action": "dependency_graph.disable",
"description": "The dependency graph was disabled for all existing repositories.",
"docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization"
},
{
"action": "dependency_graph.enable",
"description": "The dependency graph was enabled for all existing repositories.",
"docs_reference_links": "N/A"
},
{
"action": "dependency_graph_new_repos.disable",
"description": "The dependency graph was disabled for all new repositories.",
"docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization"
},
{
"action": "dependency_graph_new_repos.enable",
"description": "The dependency graph was enabled for all new repositories.",
"docs_reference_links": "N/A"
},
{
"action": "environment.add_protection_rule",
"description": "A GitHub Actions deployment protection rule was created via the API.",
"docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#deployment-protection-rules"
},
{
"action": "environment.create",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "environment.create_actions_secret",
"description": "A secret was created for a GitHub Actions environment.",
"docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#environment-secrets"
},
{
"action": "environment.create_actions_variable",
"description": "A variable was created for a GitHub Actions environment.",
"docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment"
},
{
"action": "environment.delete",
"description": "An environment was deleted.",
"docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#deleting-an-environment"
},
{
"action": "environment.remove_actions_secret",
"description": "A secret was deleted for a GitHub Actions environment.",
"docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#environment-secrets"
},
{
"action": "environment.remove_actions_variable",
"description": "A variable was deleted for a GitHub Actions environment.",
"docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment"
},
{
"action": "environment.remove_protection_rule",
"description": "A GitHub Actions deployment protection rule was deleted via the API.",
"docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#deployment-protection-rules"
},
{
"action": "environment.update_actions_secret",
"description": "A secret was updated for a GitHub Actions environment.",
"docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#environment-secrets"
},
{
"action": "environment.update_actions_variable",
"description": "A variable was updated for a GitHub Actions environment.",
"docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment"
},
{
"action": "environment.update_protection_rule",
"description": "A GitHub Actions deployment protection rule was updated via the API.",
"docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#deployment-protection-rules"
},
{
"action": "gist.create",
"description": "A gist was created.",
"docs_reference_links": "N/A"
},
{
"action": "gist.destroy",
"description": "A gist was deleted.",
"docs_reference_links": "N/A"
},
{
"action": "gist.visibility_change",
"description": "The visibility of a gist was updated.",
"docs_reference_links": "N/A"
},
{
"action": "git_signing_ssh_public_key.create",
"description": "An SSH key was added to a user account as a Git commit signing key.",
"docs_reference_links": "/authentication/managing-commit-signature-verification/telling-git-about-your-signing-key"
},
{
"action": "git_signing_ssh_public_key.delete",
"description": "An SSH key was removed from a user account as a Git commit signing key.",
"docs_reference_links": "/authentication/managing-commit-signature-verification/telling-git-about-your-signing-key"
},
{
"action": "github_hosted_runner.create",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "github_hosted_runner.destroy",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "github_hosted_runner.update",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "gpg_key.create",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "gpg_key.destroy",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "hook.active_changed",
"description": "A hook's active status was updated.",
"docs_reference_links": "N/A"
},
{
"action": "hook.config_changed",
"description": "A hook's configuration was changed.",
"docs_reference_links": "N/A"
},
{
"action": "hook.create",
"description": "A new hook was added.",
"docs_reference_links": "/get-started/exploring-integrations/about-webhooks"
},
{
"action": "hook.destroy",
"description": "A hook was deleted.",
"docs_reference_links": "N/A"
},
{
"action": "hook.events_changed",
"description": "A hook's configured events were changed.",
"docs_reference_links": "N/A"
},
{
"action": "integration.create",
"description": "A GitHub App was created.",
"docs_reference_links": "N/A"
},
{
"action": "integration.destroy",
"description": "A GitHub App was deleted.",
"docs_reference_links": "N/A"
},
{
"action": "integration.generate_client_secret",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "integration_installation.create",
"description": "A GitHub App was installed.",
"docs_reference_links": "/apps/using-github-apps/authorizing-github-apps"
},
{
"action": "integration_installation.destroy",
"description": "A GitHub App was uninstalled.",
"docs_reference_links": "/apps/using-github-apps/reviewing-and-modifying-installed-github-apps#blocking-access"
},
{
"action": "integration_installation.repositories_added",
"description": "Repositories were added to a GitHub App.",
"docs_reference_links": "/apps/using-github-apps/reviewing-and-modifying-installed-github-apps#modifying-repository-access"
},
{
"action": "integration_installation.repositories_removed",
"description": "Repositories were removed from a GitHub App.",
"docs_reference_links": "/apps/using-github-apps/reviewing-and-modifying-installed-github-apps#modifying-repository-access"
},
{
"action": "integration_installation.suspend",
"description": "A GitHub App was suspended.",
"docs_reference_links": "/apps/using-github-apps/reviewing-and-modifying-installed-github-apps#blocking-access"
},
{
"action": "integration_installation.unsuspend",
"description": "A GitHub App was unsuspended.",
"docs_reference_links": "/apps/using-github-apps/reviewing-and-modifying-installed-github-apps#blocking-access"
},
{
"action": "integration_installation.version_updated",
"description": "Permissions for a GitHub App were updated.",
"docs_reference_links": "/apps/using-github-apps/approving-updated-permissions-for-a-github-app"
},
{
"action": "integration.manager_added",
"description": "A member of an enterprise or organization was added as a GitHub App manager.",
"docs_reference_links": "/organizations/managing-programmatic-access-to-your-organization/adding-and-removing-github-app-managers-in-your-organization#giving-someone-the-ability-to-manage-all-github-apps-owned-by-the-organization"
},
{
"action": "integration.manager_removed",
"description": "A member of an enterprise or organization was removed from being a GitHub App manager.",
"docs_reference_links": "/organizations/managing-programmatic-access-to-your-organization/adding-and-removing-github-app-managers-in-your-organization#removing-a-github-app-managers-permissions-for-the-entire-organization"
},
{
"action": "integration.remove_client_secret",
"description": "A client secret for a GitHub App was removed.",
"docs_reference_links": "N/A"
},
{
"action": "integration.revoke_all_tokens",
"description": "All user tokens for a GitHub App were requested to be revoked.",
"docs_reference_links": "N/A"
},
{
"action": "integration.revoke_tokens",
"description": "Token(s) for a GitHub App were revoked.",
"docs_reference_links": "N/A"
},
{
"action": "integration.suspend",
"description": "A GitHub App was suspended.",
"docs_reference_links": "/apps/maintaining-github-apps/suspending-a-github-app-installation"
},
{
"action": "integration.transfer",
"description": "Ownership of a GitHub App was transferred to another user or organization.",
"docs_reference_links": "/apps/maintaining-github-apps/transferring-ownership-of-a-github-app"
},
{
"action": "integration.unsuspend",
"description": "A GitHub App was unsuspended.",
"docs_reference_links": "/apps/maintaining-github-apps/suspending-a-github-app-installation"
},
{
"action": "marketplace_agreement_signature.create",
"description": "The GitHub Marketplace Developer Agreement was signed.",
"docs_reference_links": "N/A"
},
{
"action": "marketplace_listing.approve",
"description": "A listing was approved for inclusion in GitHub Marketplace.",
"docs_reference_links": "N/A"
},
{
"action": "marketplace_listing.change_category",
"description": "A category for a listing for an app in GitHub Marketplace was changed.",
"docs_reference_links": "N/A"
},
{
"action": "marketplace_listing.create",
"description": "A listing for an app in GitHub Marketplace was created.",
"docs_reference_links": "N/A"
},
{
"action": "marketplace_listing.delist",
"description": "A listing was removed from GitHub Marketplace.",
"docs_reference_links": "N/A"
},
{
"action": "marketplace_listing_plan.create",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "marketplace_listing_plan.publish",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "marketplace_listing_plan.retire",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "marketplace_listing_plan.update",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "marketplace_listing.redraft",
"description": "A listing was sent back to draft state.",
"docs_reference_links": "N/A"
},
{
"action": "marketplace_listing.reject",
"description": "A listing was not accepted for inclusion in GitHub Marketplace.",
"docs_reference_links": "N/A"
},
{
"action": "merge_queue.pull_request_dequeued",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "merge_queue.pull_request_queue_jump",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "merge_queue.queue_cleared",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "merge_queue.update_settings",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "metered_billing_configuration.create",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "metered_billing_configuration.destroy",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "metered_billing_configuration.update",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "migration.create",
"description": "A migration file was created for transferring data from a source location (such as a GitHub.com organization or a GitHub Enterprise Server instance) to a target GitHub Enterprise Server instance.",
"docs_reference_links": "N/A"
},
{
"action": "oauth_access.create",
"description": "An OAuth access token was generated.",
"docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authorizing-oauth-apps, /authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token"
},
{
"action": "oauth_access.destroy",
"description": "An OAuth access token was deleted.",
"docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authorizing-oauth-apps"
},
{
"action": "oauth_access.regenerate",
"description": "An OAuth access token was regenerated.",
"docs_reference_links": "N/A"
},
{
"action": "oauth_access.revoke",
"description": "An OAuth access token was revoked.",
"docs_reference_links": "N/A"
},
{
"action": "oauth_access.update",
"description": "An OAuth access token was updated.",
"docs_reference_links": "N/A"
},
{
"action": "oauth_application.create",
"description": "An OAuth application was created.",
"docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app"
},
{
"action": "oauth_application.destroy",
"description": "An OAuth application was deleted.",
"docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app"
},
{
"action": "oauth_application.generate_client_secret",
"description": "An OAuth application's secret key was generated.",
"docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app"
},
{
"action": "oauth_application.remove_client_secret",
"description": "An OAuth application's secret key was deleted.",
"docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app"
},
{
"action": "oauth_application.reset_secret",
"description": "The secret key for an OAuth application was reset.",
"docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app"
},
{
"action": "oauth_application.revoke_all_tokens",
"description": "All user tokens for an OAuth application were requested to be revoked.",
"docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app"
},
{
"action": "oauth_application.revoke_tokens",
"description": "Token(s) for an OAuth application were revoked.",
"docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app"
},
{
"action": "oauth_application.transfer",
"description": "An OAuth application was transferred from one account to another.",
"docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app"
},
{
"action": "oauth_authorization.create",
"description": "An authorization for an OAuth application was created.",
"docs_reference_links": "/apps/oauth-apps/using-oauth-apps/authorizing-oauth-apps"
},
{
"action": "oauth_authorization.destroy",
"description": "An authorization for an OAuth application was deleted.",
"docs_reference_links": "/apps/using-github-apps/reviewing-your-authorized-integrations"
},
{
"action": "oauth_authorization.update",
"description": "An authorization for an OAuth application was updated.",
"docs_reference_links": "/apps/oauth-apps/using-oauth-apps/authorizing-oauth-apps"
},
{
"action": "org.add_member",
"description": "A user joined an organization.",
"docs_reference_links": "N/A"
},
{
"action": "org.add_outside_collaborator",
"description": "An outside collaborator was added to a repository.",
"docs_reference_links": "N/A"
},
{
"action": "org.advanced_security_disabled_for_new_repos",
"description": "GitHub Advanced Security was disabled for new repositories in an organization.",
"docs_reference_links": "N/A"
},
{
"action": "org.advanced_security_disabled_on_all_repos",
"description": "GitHub Advanced Security was disabled for all repositories in an organization.",
"docs_reference_links": "N/A"
},
{
"action": "org.advanced_security_enabled_for_new_repos",
"description": "GitHub Advanced Security was enabled for new repositories in an organization.",
"docs_reference_links": "N/A"
},
{
"action": "org.advanced_security_enabled_on_all_repos",
"description": "GitHub Advanced Security was enabled for all repositories in an organization.",
"docs_reference_links": "N/A"
},
{
"action": "org.remove_member",
"description": "A member was removed from an organization, either manually or due to a two-factor authentication requirement.",
"docs_reference_links": "N/A"
},
{
"action": "org.security_center_export_code_scanning_metrics",
"description": "A CSV export was requested on the CodeQL pull request alerts page.",
"docs_reference_links": "N/A"
},
{
"action": "org.security_center_export_coverage",
"description": "A CSV export was requested on the Coverage page.",
"docs_reference_links": "N/A"
},
{
"action": "org.security_center_export_overview_dashboard",
"description": "A CSV export was requested on the Overview Dashboard page.",
"docs_reference_links": "N/A"
},
{
"action": "org.security_center_export_risk",
"description": "A CSV export was requested on the Risk page.",
"docs_reference_links": "N/A"
},
{
"action": "org.set_actions_fork_pr_approvals_policy",
"description": "The setting for requiring approvals for workflows from public forks was changed for an organization.",
"docs_reference_links": "/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization#requiring-approval-for-workflows-from-public-forks"
},
{
"action": "org.set_actions_private_fork_pr_approvals_policy",
"description": "The policy for requiring approval for fork pull request workflows from collaborators without write access to private repos was changed for an organization.",
"docs_reference_links": "/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization#enabling-workflows-for-private-repository-forks"
},
{
"action": "org.set_actions_retention_limit",
"description": "The retention period for GitHub Actions artifacts and logs in an organization was changed.",
"docs_reference_links": "/organizations/managing-organization-settings/configuring-the-retention-period-for-github-actions-artifacts-and-logs-in-your-organization"
},
{
"action": "org.set_default_workflow_permissions",
"description": "The default permissions granted to the GITHUB_TOKEN when running workflows were changed for an organization.",
"docs_reference_links": "/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization#setting-the-permissions-of-the-github_token-for-your-organization"
},
{
"action": "org.set_fork_pr_workflows_policy",
"description": "The policy for workflows on private repository forks was changed.",
"docs_reference_links": "/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization#enabling-workflows-for-private-repository-forks"
},
{
"action": "org.set_workflow_permission_can_approve_pr",
"description": "The policy for allowing GitHub Actions to create and approve pull requests was changed for an organization.",
"docs_reference_links": "/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization#preventing-github-actions-from-creating-or-approving-pull-requests"
},
{
"action": "org.update_member",
"description": "A person's role was changed from owner to member or member to owner.",
"docs_reference_links": "N/A"
},
{
"action": "org.update_member_repository_creation_permission",
"description": "The create repository permission for organization members was changed.",
"docs_reference_links": "N/A"
},
{
"action": "org.update_member_repository_invitation_permission",
"description": "An organization owner changed the policy setting for organization members inviting outside collaborators to repositories.",
"docs_reference_links": "/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators"
},
{
"action": "pages_protected_domain.create",
"description": "A GitHub Pages verified domain was created for an organization or enterprise.",
"docs_reference_links": "/pages/configuring-a-custom-domain-for-your-github-pages-site/verifying-your-custom-domain-for-github-pages"
},
{
"action": "pages_protected_domain.delete",
"description": "A GitHub Pages verified domain was deleted from an organization or enterprise.",
"docs_reference_links": "/pages/configuring-a-custom-domain-for-your-github-pages-site/verifying-your-custom-domain-for-github-pages"
},
{
"action": "pages_protected_domain.verify",
"description": "A GitHub Pages domain was verified for an organization or enterprise.",
"docs_reference_links": "/pages/configuring-a-custom-domain-for-your-github-pages-site/verifying-your-custom-domain-for-github-pages"
},
{
"action": "passkey.register",
"description": "A new passkey was added.",
"docs_reference_links": "N/A"
},
{
"action": "passkey.remove",
"description": "A new passkey was removed.",
"docs_reference_links": "N/A"
},
{
"action": "payment_method.create",
"description": "A new payment method was added, such as a new credit card or PayPal account.",
"docs_reference_links": "N/A"
},
{
"action": "payment_method.remove",
"description": "A payment method was removed.",
"docs_reference_links": "N/A"
},
{
"action": "payment_method.update",
"description": "An existing payment method was updated.",
"docs_reference_links": "N/A"
},
{
"action": "personal_access_token.access_granted",
"description": "A fine-grained personal access token was granted access to resources.",
"docs_reference_links": "/organizations/managing-programmatic-access-to-your-organization/managing-requests-for-personal-access-tokens-in-your-organization"
},
{
"action": "personal_access_token.access_revoked",
"description": "A fine-grained personal access token was revoked. The token can still read public organization resources.",
"docs_reference_links": "/organizations/managing-programmatic-access-to-your-organization/reviewing-and-revoking-personal-access-tokens-in-your-organization"
},
{
"action": "personal_access_token.create",
"description": "Triggered when you create a fine-grained personal access token.",
"docs_reference_links": "N/A"
},
{
"action": "personal_access_token.credential_regenerated",
"description": "Triggered when you regenerate a fine-grained personal access token.",
"docs_reference_links": "N/A"
},
{
"action": "personal_access_token.credential_revoked",
"description": "A fine-grained personal access token was revoked by GitHub Advanced Security.",
"docs_reference_links": "/code-security/getting-started/github-security-features#secret-scanning-alerts-for-users"
},
{
"action": "personal_access_token.destroy",
"description": "Triggered when you delete a fine-grained personal access token.",
"docs_reference_links": "N/A"
},
{
"action": "personal_access_token.request_cancelled",
"description": "A pending request for a fine-grained personal access token to access organization resources was canceled.",
"docs_reference_links": "N/A"
},
{
"action": "personal_access_token.request_created",
"description": "Triggered when a fine-grained personal access token was created to access organization resources and the organization requires approval before the token can access organization resources.",
"docs_reference_links": "/organizations/managing-programmatic-access-to-your-organization/managing-requests-for-personal-access-tokens-in-your-organization"
},
{
"action": "personal_access_token.request_denied",
"description": "A request for a fine-grained personal access token to access organization resources was denied.",
"docs_reference_links": "/organizations/managing-programmatic-access-to-your-organization/managing-requests-for-personal-access-tokens-in-your-organization"
},
{
"action": "personal_access_token.update",
"description": "A fine-grained personal access token was updated.",
"docs_reference_links": "/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens#fine-grained-personal-access-tokens"
},
{
"action": "premium_runner.create",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "premium_runner.destroy",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "premium_runner.update",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "private_vulnerability_reporting.disable",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "private_vulnerability_reporting.enable",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "private_vulnerability_reporting_new_repos.disable",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "private_vulnerability_reporting_new_repos.enable",
"description": "N/A",
"docs_reference_links": "N/A"
},
{
"action": "profile_picture.update",
"description": "A profile picture was updated.",
"docs_reference_links": "/account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile/personalizing-your-profile"
},
{
"action": "project.access",
"description": "A project board visibility was changed.",
"docs_reference_links": "N/A"
},
{
"action": "project.close",
"description": "A project board was closed.",
"docs_reference_links": "/issues/organizing-your-work-with-project-boards/managing-project-boards/closing-a-project-board"
},
{
"action": "project_collaborator.add",
"description": "A collaborator was added to a project.",
"docs_reference_links": "N/A"
},
{
"action": "project_collaborator.remove",
"description": "A collaborator was removed from a project.",
"docs_reference_links": "N/A"
},
{
"action": "project_collaborator.update",
"description": "A project collaborator's permission level was changed.",
"docs_reference_links": "N/A"
},
{
"action": "project.create",
"description": "A project board was created.",
"docs_reference_links": "N/A"
},
{
"action": "project.delete",
"description": "A project board was deleted.",
"docs_reference_links": "N/A"
},
{
"action": "project_field.create",
"description": "A field was created in a project board.",
"docs_reference_links": "/issues/planning-and-tracking-with-projects/understanding-fields"
},
{
"action": "project_field.delete",
"description": "A field was deleted in a project board.",
"docs_reference_links": "/issues/planning-and-tracking-with-projects/understanding-fields/deleting-custom-fields"
},
{
"action": "project.link",
"description": "A repository was linked to a project board.",
"docs_reference_links": "N/A"
},
{
"action": "project.open",
"description": "A project board was reopened.",
"docs_reference_links": "/issues/organizing-your-work-with-project-boards/managing-project-boards/reopening-a-closed-project-board"
},
{
"action": "project.rename",
"description": "A project board was renamed.",
"docs_reference_links": "N/A"
},
{
"action": "project.unlink",
"description": "A repository was unlinked from a project board.",
"docs_reference_links": "N/A"
},
{
"action": "project.update_org_permission",
"description": "The project's base-level permission for all organization members was changed or removed.",
"docs_reference_links": "N/A"
},
{
"action": "project.update_team_permission",
"description": "A team's project board permission level was changed or when a team was added or removed from a project board.",
"docs_reference_links": "N/A"