File tree Expand file tree Collapse file tree 1 file changed +29
-1
lines changed Expand file tree Collapse file tree 1 file changed +29
-1
lines changed Original file line number Diff line number Diff line change @@ -13538,7 +13538,10 @@ paths:
1353813538 type: integer
1353913539 responses:
1354013540 200:
13541- content: {}
13541+ content:
13542+ application/json:
13543+ schema:
13544+ $ref: '#/components/schemas/paginated_activities'
1354213545 description: The pull request activity log
1354313546 401:
1354413547 content: {}
@@ -20748,6 +20751,31 @@ components:
2074820751 pattern: '[0-9a-f]{7,}?'
2074920752 type: string
2075020753 type: object
20754+ activity:
20755+ properties:
20756+ comment:
20757+ $ref: '#/components/schemas/comment'
20758+ paginated_activities:
20759+ description: A paged list of activities
20760+ properties:
20761+ page:
20762+ type: integer
20763+ previous:
20764+ format: uri
20765+ type: string
20766+ pagelen:
20767+ type: integer
20768+ size:
20769+ type: integer
20770+ next:
20771+ format: uri
20772+ type: string
20773+ values:
20774+ items:
20775+ $ref: '#/components/schemas/activity'
20776+ minItems: 0
20777+ type: array
20778+ type: object
2075120779 paginated_pipelines:
2075220780 description: A paged list of pipelines
2075320781 example:
You can’t perform that action at this time.
0 commit comments