Skip to content

Commit b43d8b3

Browse files
authored
Merge pull request #33017 from github/repo-sync
Repo sync
2 parents 57a0964 + 291834e commit b43d8b3

File tree

21 files changed

+1822
-31
lines changed

21 files changed

+1822
-31
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ updates:
2020
day: wednesday
2121
ignore:
2222
- dependency-name: '*'
23-
update-types:
24-
['version-update:semver-patch', 'version-update:semver-minor']
23+
update-types: ['version-update:semver-patch']
2524

2625
- package-ecosystem: 'docker'
2726
directory: '/'

content/actions/security-guides/using-artifact-attestations-to-establish-provenance-for-builds.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Using artifact attestations to establish provenance for builds
3-
intro: 'Artifact attestations enable you to increase the supply chain security of your builds by publicly establishing where and how your software was built and associating it with a signed software bill of materials (SBOM).'
3+
intro: 'Artifact attestations enable you to increase the supply chain security of your builds by establishing where and how your software was built.'
44
versions:
55
fpt: '*'
66
ghec: '*'

content/rest/orgs/custom-properties.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
---
22
title: REST API endpoints for custom properties
33
shortTitle: Custom properties
4-
intro: 'Use the REST API to create and manage custom properties for an organization.'
4+
intro: Use the REST API to create and manage custom properties for an organization.
55
versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖
66
fpt: '*'
77
ghec: '*'
8+
ghes: '>=3.13'
89
topics:
910
- API
1011
autogenerated: rest

content/rest/repos/custom-properties.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
---
22
title: REST API endpoints for custom properties
33
shortTitle: Custom properties
4-
intro: 'Use the REST API to list the custom properties assigned to a repository by the organization.'
4+
intro: >-
5+
Use the REST API to list the custom properties assigned to a repository by the
6+
organization.
57
versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖
68
fpt: '*'
79
ghec: '*'
10+
ghes: '>=3.13'
811
topics:
912
- API
1013
autogenerated: rest

src/github-apps/data/ghes-3.13-2022-11-28/fine-grained-pat-permissions.json

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -521,6 +521,75 @@
521521
}
522522
]
523523
},
524+
"organization_custom_properties": {
525+
"title": "Custom properties",
526+
"displayTitle": "Organization permissions for \"Custom properties\"",
527+
"permissions": [
528+
{
529+
"category": "orgs",
530+
"slug": "get-all-custom-properties-for-an-organization",
531+
"subcategory": "custom-properties",
532+
"verb": "get",
533+
"requestPath": "/orgs/{org}/properties/schema",
534+
"additional-permissions": false,
535+
"access": "read"
536+
},
537+
{
538+
"category": "orgs",
539+
"slug": "create-or-update-custom-properties-for-an-organization",
540+
"subcategory": "custom-properties",
541+
"verb": "patch",
542+
"requestPath": "/orgs/{org}/properties/schema",
543+
"additional-permissions": false,
544+
"access": "admin"
545+
},
546+
{
547+
"category": "orgs",
548+
"slug": "get-a-custom-property-for-an-organization",
549+
"subcategory": "custom-properties",
550+
"verb": "get",
551+
"requestPath": "/orgs/{org}/properties/schema/{custom_property_name}",
552+
"additional-permissions": false,
553+
"access": "read"
554+
},
555+
{
556+
"category": "orgs",
557+
"slug": "create-or-update-a-custom-property-for-an-organization",
558+
"subcategory": "custom-properties",
559+
"verb": "put",
560+
"requestPath": "/orgs/{org}/properties/schema/{custom_property_name}",
561+
"additional-permissions": false,
562+
"access": "admin"
563+
},
564+
{
565+
"category": "orgs",
566+
"slug": "remove-a-custom-property-for-an-organization",
567+
"subcategory": "custom-properties",
568+
"verb": "delete",
569+
"requestPath": "/orgs/{org}/properties/schema/{custom_property_name}",
570+
"additional-permissions": false,
571+
"access": "admin"
572+
},
573+
{
574+
"category": "orgs",
575+
"slug": "list-custom-property-values-for-organization-repositories",
576+
"subcategory": "custom-properties",
577+
"verb": "get",
578+
"requestPath": "/orgs/{org}/properties/values",
579+
"additional-permissions": false,
580+
"access": "read"
581+
},
582+
{
583+
"category": "orgs",
584+
"slug": "create-or-update-custom-property-values-for-organization-repositories",
585+
"subcategory": "custom-properties",
586+
"verb": "patch",
587+
"requestPath": "/orgs/{org}/properties/values",
588+
"additional-permissions": false,
589+
"access": "write"
590+
}
591+
]
592+
},
524593
"organization_custom_roles": {
525594
"title": "Custom repository roles",
526595
"displayTitle": "Organization permissions for \"Custom repository roles\"",
@@ -3980,6 +4049,21 @@
39804049
}
39814050
]
39824051
},
4052+
"repository_custom_properties": {
4053+
"title": "Custom properties",
4054+
"displayTitle": "Repository permissions for \"Custom properties\"",
4055+
"permissions": [
4056+
{
4057+
"category": "repos",
4058+
"slug": "create-or-update-custom-property-values-for-a-repository",
4059+
"subcategory": "custom-properties",
4060+
"verb": "patch",
4061+
"requestPath": "/repos/{owner}/{repo}/properties/values",
4062+
"additional-permissions": false,
4063+
"access": "write"
4064+
}
4065+
]
4066+
},
39834067
"vulnerability_alerts": {
39844068
"title": "Dependabot alerts",
39854069
"displayTitle": "Repository permissions for \"Dependabot alerts\"",
@@ -4869,6 +4953,15 @@
48694953
"additional-permissions": false,
48704954
"access": "read"
48714955
},
4956+
{
4957+
"category": "repos",
4958+
"slug": "get-all-custom-property-values-for-a-repository",
4959+
"subcategory": "custom-properties",
4960+
"verb": "get",
4961+
"requestPath": "/repos/{owner}/{repo}/properties/values",
4962+
"additional-permissions": false,
4963+
"access": "read"
4964+
},
48724965
{
48734966
"category": "repos",
48744967
"slug": "get-rules-for-a-branch",

src/github-apps/data/ghes-3.13-2022-11-28/fine-grained-pat.json

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2846,6 +2846,48 @@
28462846
"verb": "get",
28472847
"requestPath": "/orgs/{org}/personal-access-tokens/{pat_id}/repositories"
28482848
},
2849+
{
2850+
"slug": "get-all-custom-properties-for-an-organization",
2851+
"subcategory": "custom-properties",
2852+
"verb": "get",
2853+
"requestPath": "/orgs/{org}/properties/schema"
2854+
},
2855+
{
2856+
"slug": "create-or-update-custom-properties-for-an-organization",
2857+
"subcategory": "custom-properties",
2858+
"verb": "patch",
2859+
"requestPath": "/orgs/{org}/properties/schema"
2860+
},
2861+
{
2862+
"slug": "get-a-custom-property-for-an-organization",
2863+
"subcategory": "custom-properties",
2864+
"verb": "get",
2865+
"requestPath": "/orgs/{org}/properties/schema/{custom_property_name}"
2866+
},
2867+
{
2868+
"slug": "create-or-update-a-custom-property-for-an-organization",
2869+
"subcategory": "custom-properties",
2870+
"verb": "put",
2871+
"requestPath": "/orgs/{org}/properties/schema/{custom_property_name}"
2872+
},
2873+
{
2874+
"slug": "remove-a-custom-property-for-an-organization",
2875+
"subcategory": "custom-properties",
2876+
"verb": "delete",
2877+
"requestPath": "/orgs/{org}/properties/schema/{custom_property_name}"
2878+
},
2879+
{
2880+
"slug": "list-custom-property-values-for-organization-repositories",
2881+
"subcategory": "custom-properties",
2882+
"verb": "get",
2883+
"requestPath": "/orgs/{org}/properties/values"
2884+
},
2885+
{
2886+
"slug": "create-or-update-custom-property-values-for-organization-repositories",
2887+
"subcategory": "custom-properties",
2888+
"verb": "patch",
2889+
"requestPath": "/orgs/{org}/properties/values"
2890+
},
28492891
{
28502892
"slug": "list-public-organization-members",
28512893
"subcategory": "members",
@@ -3834,6 +3876,18 @@
38343876
"verb": "get",
38353877
"requestPath": "/repos/{owner}/{repo}/languages"
38363878
},
3879+
{
3880+
"slug": "get-all-custom-property-values-for-a-repository",
3881+
"subcategory": "custom-properties",
3882+
"verb": "get",
3883+
"requestPath": "/repos/{owner}/{repo}/properties/values"
3884+
},
3885+
{
3886+
"slug": "create-or-update-custom-property-values-for-a-repository",
3887+
"subcategory": "custom-properties",
3888+
"verb": "patch",
3889+
"requestPath": "/repos/{owner}/{repo}/properties/values"
3890+
},
38373891
{
38383892
"slug": "list-repository-cache-replication-status",
38393893
"subcategory": "repos",

src/github-apps/data/ghes-3.13-2022-11-28/server-to-server-permissions.json

Lines changed: 111 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -633,6 +633,89 @@
633633
}
634634
]
635635
},
636+
"organization_custom_properties": {
637+
"title": "Custom properties",
638+
"displayTitle": "Organization permissions for \"Custom properties\"",
639+
"permissions": [
640+
{
641+
"category": "orgs",
642+
"slug": "get-all-custom-properties-for-an-organization",
643+
"subcategory": "custom-properties",
644+
"verb": "get",
645+
"requestPath": "/orgs/{org}/properties/schema",
646+
"access": "read",
647+
"user-to-server": true,
648+
"server-to-server": true,
649+
"additional-permissions": false
650+
},
651+
{
652+
"category": "orgs",
653+
"slug": "create-or-update-custom-properties-for-an-organization",
654+
"subcategory": "custom-properties",
655+
"verb": "patch",
656+
"requestPath": "/orgs/{org}/properties/schema",
657+
"access": "admin",
658+
"user-to-server": true,
659+
"server-to-server": true,
660+
"additional-permissions": false
661+
},
662+
{
663+
"category": "orgs",
664+
"slug": "get-a-custom-property-for-an-organization",
665+
"subcategory": "custom-properties",
666+
"verb": "get",
667+
"requestPath": "/orgs/{org}/properties/schema/{custom_property_name}",
668+
"access": "read",
669+
"user-to-server": true,
670+
"server-to-server": true,
671+
"additional-permissions": false
672+
},
673+
{
674+
"category": "orgs",
675+
"slug": "create-or-update-a-custom-property-for-an-organization",
676+
"subcategory": "custom-properties",
677+
"verb": "put",
678+
"requestPath": "/orgs/{org}/properties/schema/{custom_property_name}",
679+
"access": "admin",
680+
"user-to-server": true,
681+
"server-to-server": true,
682+
"additional-permissions": false
683+
},
684+
{
685+
"category": "orgs",
686+
"slug": "remove-a-custom-property-for-an-organization",
687+
"subcategory": "custom-properties",
688+
"verb": "delete",
689+
"requestPath": "/orgs/{org}/properties/schema/{custom_property_name}",
690+
"access": "admin",
691+
"user-to-server": true,
692+
"server-to-server": true,
693+
"additional-permissions": false
694+
},
695+
{
696+
"category": "orgs",
697+
"slug": "list-custom-property-values-for-organization-repositories",
698+
"subcategory": "custom-properties",
699+
"verb": "get",
700+
"requestPath": "/orgs/{org}/properties/values",
701+
"access": "read",
702+
"user-to-server": true,
703+
"server-to-server": true,
704+
"additional-permissions": false
705+
},
706+
{
707+
"category": "orgs",
708+
"slug": "create-or-update-custom-property-values-for-organization-repositories",
709+
"subcategory": "custom-properties",
710+
"verb": "patch",
711+
"requestPath": "/orgs/{org}/properties/values",
712+
"access": "write",
713+
"user-to-server": true,
714+
"server-to-server": true,
715+
"additional-permissions": false
716+
}
717+
]
718+
},
636719
"organization_custom_roles": {
637720
"title": "Custom repository roles",
638721
"displayTitle": "Organization permissions for \"Custom repository roles\"",
@@ -4834,6 +4917,23 @@
48344917
}
48354918
]
48364919
},
4920+
"repository_custom_properties": {
4921+
"title": "Custom properties",
4922+
"displayTitle": "Repository permissions for \"Custom properties\"",
4923+
"permissions": [
4924+
{
4925+
"category": "repos",
4926+
"slug": "create-or-update-custom-property-values-for-a-repository",
4927+
"subcategory": "custom-properties",
4928+
"verb": "patch",
4929+
"requestPath": "/repos/{owner}/{repo}/properties/values",
4930+
"access": "write",
4931+
"user-to-server": true,
4932+
"server-to-server": true,
4933+
"additional-permissions": false
4934+
}
4935+
]
4936+
},
48374937
"vulnerability_alerts": {
48384938
"title": "Dependabot alerts",
48394939
"displayTitle": "Repository permissions for \"Dependabot alerts\"",
@@ -5924,6 +6024,17 @@
59246024
"server-to-server": true,
59256025
"additional-permissions": false
59266026
},
6027+
{
6028+
"category": "repos",
6029+
"slug": "get-all-custom-property-values-for-a-repository",
6030+
"subcategory": "custom-properties",
6031+
"verb": "get",
6032+
"requestPath": "/repos/{owner}/{repo}/properties/values",
6033+
"access": "read",
6034+
"user-to-server": true,
6035+
"server-to-server": true,
6036+
"additional-permissions": false
6037+
},
59276038
{
59286039
"category": "repos",
59296040
"slug": "get-rules-for-a-branch",

0 commit comments

Comments
 (0)