@@ -13936,6 +13936,12 @@ paths:
1393613936 - "$ref": "#/components/parameters/repo"
1393713937 - "$ref": "#/components/parameters/per-page"
1393813938 - "$ref": "#/components/parameters/page"
13939+ - name: name
13940+ description: Filters artifacts by exact match on their name field.
13941+ in: query
13942+ required: false
13943+ schema:
13944+ type: string
1393913945 responses:
1394013946 '200':
1394113947 description: Response
@@ -41903,6 +41909,13 @@ components:
4190341909 enum:
4190441910 - read
4190541911 - write
41912+ repository_announcement_banners:
41913+ type: string
41914+ description: The level of permission to grant the access token to view and
41915+ manage announcement banners for a repository.
41916+ enum:
41917+ - read
41918+ - write
4190641919 repository_hooks:
4190741920 type: string
4190841921 description: The level of permission to grant the access token to manage
@@ -41987,6 +42000,13 @@ components:
4198742000 enum:
4198842001 - read
4198942002 - write
42003+ organization_announcement_banners:
42004+ type: string
42005+ description: The level of permission to grant the access token to view and
42006+ manage announcement banners for an organization.
42007+ enum:
42008+ - read
42009+ - write
4199042010 organization_hooks:
4199142011 type: string
4199242012 description: The level of permission to grant the access token to manage
@@ -62052,18 +62072,87 @@ components:
6205262072 installation:
6205362073 "$ref": "#/components/schemas/simple-installation"
6205462074 merge_group:
62075+ title: MergeGroup
6205562076 type: object
6205662077 properties:
62057- base_ref:
62078+ head_sha:
62079+ description: The SHA of the merge group.
6205862080 type: string
6205962081 head_ref:
62082+ description: The full ref of the merge group.
6206062083 type: string
62061- head_sha:
62084+ base_sha:
62085+ description: The SHA of the merge group's parent commit.
62086+ type: string
62087+ base_ref:
62088+ description: The full ref of the branch the merge group will be merged
62089+ into.
6206262090 type: string
62091+ head_commit:
62092+ title: SimpleCommit
62093+ type: object
62094+ properties:
62095+ author:
62096+ title: Committer
62097+ description: Metaproperties for Git author/committer information.
62098+ type: object
62099+ properties:
62100+ date:
62101+ type: string
62102+ format: date-time
62103+ email:
62104+ type: string
62105+ nullable: true
62106+ format: email
62107+ name:
62108+ description: The git author's name.
62109+ type: string
62110+ username:
62111+ type: string
62112+ required:
62113+ - email
62114+ - name
62115+ committer:
62116+ title: Committer
62117+ description: Metaproperties for Git author/committer information.
62118+ type: object
62119+ properties:
62120+ date:
62121+ type: string
62122+ format: date-time
62123+ email:
62124+ type: string
62125+ nullable: true
62126+ format: email
62127+ name:
62128+ description: The git author's name.
62129+ type: string
62130+ username:
62131+ type: string
62132+ required:
62133+ - email
62134+ - name
62135+ id:
62136+ type: string
62137+ message:
62138+ type: string
62139+ timestamp:
62140+ type: string
62141+ tree_id:
62142+ type: string
62143+ required:
62144+ - id
62145+ - tree_id
62146+ - message
62147+ - timestamp
62148+ - author
62149+ - committer
6206362150 required:
6206462151 - head_sha
6206562152 - head_ref
62153+ - base_sha
6206662154 - base_ref
62155+ - head_commit
6206762156 organization:
6206862157 "$ref": "#/components/schemas/organization-simple"
6206962158 repository:
0 commit comments