@@ -13989,6 +13989,12 @@ paths:
1398913989 - "$ref": "#/components/parameters/repo"
1399013990 - "$ref": "#/components/parameters/per-page"
1399113991 - "$ref": "#/components/parameters/page"
13992+ - name: name
13993+ description: Filters artifacts by exact match on their name field.
13994+ in: query
13995+ required: false
13996+ schema:
13997+ type: string
1399213998 responses:
1399313999 '200':
1399414000 description: Response
@@ -42065,6 +42071,13 @@ components:
4206542071 enum:
4206642072 - read
4206742073 - write
42074+ repository_announcement_banners:
42075+ type: string
42076+ description: The level of permission to grant the access token to view and
42077+ manage announcement banners for a repository.
42078+ enum:
42079+ - read
42080+ - write
4206842081 repository_hooks:
4206942082 type: string
4207042083 description: The level of permission to grant the access token to manage
@@ -42149,6 +42162,13 @@ components:
4214942162 enum:
4215042163 - read
4215142164 - write
42165+ organization_announcement_banners:
42166+ type: string
42167+ description: The level of permission to grant the access token to view and
42168+ manage announcement banners for an organization.
42169+ enum:
42170+ - read
42171+ - write
4215242172 organization_hooks:
4215342173 type: string
4215442174 description: The level of permission to grant the access token to manage
@@ -62577,18 +62597,89 @@ components:
6257762597 installation:
6257862598 "$ref": "#/components/schemas/simple-installation"
6257962599 merge_group:
62600+ title: MergeGroup
6258062601 type: object
6258162602 properties:
62582- base_ref:
62603+ head_sha:
62604+ description: The SHA of the merge group.
6258362605 type: string
6258462606 head_ref:
62607+ description: The full ref of the merge group.
6258562608 type: string
62586- head_sha:
62609+ base_sha:
62610+ description: The SHA of the merge group's parent commit.
62611+ type: string
62612+ base_ref:
62613+ description: The full ref of the branch the merge group will be merged
62614+ into.
6258762615 type: string
62616+ head_commit:
62617+ title: SimpleCommit
62618+ type: object
62619+ properties:
62620+ author:
62621+ title: Committer
62622+ description: Metaproperties for Git author/committer information.
62623+ type: object
62624+ properties:
62625+ date:
62626+ type: string
62627+ format: date-time
62628+ email:
62629+ type:
62630+ - string
62631+ - 'null'
62632+ format: email
62633+ name:
62634+ description: The git author's name.
62635+ type: string
62636+ username:
62637+ type: string
62638+ required:
62639+ - email
62640+ - name
62641+ committer:
62642+ title: Committer
62643+ description: Metaproperties for Git author/committer information.
62644+ type: object
62645+ properties:
62646+ date:
62647+ type: string
62648+ format: date-time
62649+ email:
62650+ type:
62651+ - string
62652+ - 'null'
62653+ format: email
62654+ name:
62655+ description: The git author's name.
62656+ type: string
62657+ username:
62658+ type: string
62659+ required:
62660+ - email
62661+ - name
62662+ id:
62663+ type: string
62664+ message:
62665+ type: string
62666+ timestamp:
62667+ type: string
62668+ tree_id:
62669+ type: string
62670+ required:
62671+ - id
62672+ - tree_id
62673+ - message
62674+ - timestamp
62675+ - author
62676+ - committer
6258862677 required:
6258962678 - head_sha
6259062679 - head_ref
62680+ - base_sha
6259162681 - base_ref
62682+ - head_commit
6259262683 organization:
6259362684 "$ref": "#/components/schemas/organization-simple"
6259462685 repository:
0 commit comments