diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.json b/descriptions-next/api.github.com/api.github.com.2022-11-28.json index 3f90cc07df..eeb1f7dea9 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.json +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.json @@ -77916,6 +77916,68 @@ } } }, + "/repos/{owner}/{repo}/stargazers/count": { + "get": { + "summary": "Get stargazer count", + "description": "Gets the current number of users who have starred the repository. Users who previously starred the repository but later removed their star are not included.", + "tags": [ + "activity" + ], + "operationId": "activity/get-stargazer-count-for-repo", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/activity/starring#get-stargazer-count" + }, + "parameters": [ + { + "$ref": "#/components/parameters/owner" + }, + { + "$ref": "#/components/parameters/repo" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "count" + ], + "properties": { + "count": { + "type": "integer", + "minimum": 0, + "examples": [ + 42 + ] + } + } + }, + "examples": { + "default": { + "value": { + "count": 42 + } + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "activity", + "subcategory": "starring" + } + } + }, "/repos/{owner}/{repo}/stats/code_frequency": { "get": { "summary": "Get the weekly commit activity", @@ -150401,10 +150463,10 @@ "additionalProperties": false }, "sha": { - "description": "The commit SHA associated with this dependency snapshot. Maximum length: 40 characters.", + "description": "The commit SHA associated with this dependency snapshot. Maximum length: 64 characters.", "type": "string", "minLength": 40, - "maxLength": 40, + "maxLength": 64, "examples": [ "ddc951f4b1293222421f2c8df679786153acf689" ] diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml index c025743bf1..684426cde9 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml @@ -57029,6 +57029,47 @@ paths: enabledForGitHubApps: true category: activity subcategory: starring + "/repos/{owner}/{repo}/stargazers/count": + get: + summary: Get stargazer count + description: Gets the current number of users who have starred the repository. + Users who previously starred the repository but later removed their star are + not included. + tags: + - activity + operationId: activity/get-stargazer-count-for-repo + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/activity/starring#get-stargazer-count + parameters: + - "$ref": "#/components/parameters/owner" + - "$ref": "#/components/parameters/repo" + responses: + '200': + description: Response + content: + application/json: + schema: + type: object + required: + - count + properties: + count: + type: integer + minimum: 0 + examples: + - 42 + examples: + default: + value: + count: 42 + '404': + "$ref": "#/components/responses/not_found" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: activity + subcategory: starring "/repos/{owner}/{repo}/stats/code_frequency": get: summary: Get the weekly commit activity @@ -109765,10 +109806,10 @@ components: additionalProperties: false sha: description: 'The commit SHA associated with this dependency snapshot. Maximum - length: 40 characters.' + length: 64 characters.' type: string minLength: 40 - maxLength: 40 + maxLength: 64 examples: - ddc951f4b1293222421f2c8df679786153acf689 ref: diff --git a/descriptions-next/api.github.com/api.github.com.2026-03-10.json b/descriptions-next/api.github.com/api.github.com.2026-03-10.json index 155fb6a3fb..aed6965ae4 100644 --- a/descriptions-next/api.github.com/api.github.com.2026-03-10.json +++ b/descriptions-next/api.github.com/api.github.com.2026-03-10.json @@ -77827,6 +77827,68 @@ } } }, + "/repos/{owner}/{repo}/stargazers/count": { + "get": { + "summary": "Get stargazer count", + "description": "Gets the current number of users who have starred the repository. Users who previously starred the repository but later removed their star are not included.", + "tags": [ + "activity" + ], + "operationId": "activity/get-stargazer-count-for-repo", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/activity/starring#get-stargazer-count" + }, + "parameters": [ + { + "$ref": "#/components/parameters/owner" + }, + { + "$ref": "#/components/parameters/repo" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "count" + ], + "properties": { + "count": { + "type": "integer", + "minimum": 0, + "examples": [ + 42 + ] + } + } + }, + "examples": { + "default": { + "value": { + "count": 42 + } + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "activity", + "subcategory": "starring" + } + } + }, "/repos/{owner}/{repo}/stats/code_frequency": { "get": { "summary": "Get the weekly commit activity", @@ -149759,10 +149821,10 @@ "additionalProperties": false }, "sha": { - "description": "The commit SHA associated with this dependency snapshot. Maximum length: 40 characters.", + "description": "The commit SHA associated with this dependency snapshot. Maximum length: 64 characters.", "type": "string", "minLength": 40, - "maxLength": 40, + "maxLength": 64, "examples": [ "ddc951f4b1293222421f2c8df679786153acf689" ] diff --git a/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml b/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml index 9cf6215961..d5467079b0 100644 --- a/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml +++ b/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml @@ -56954,6 +56954,47 @@ paths: enabledForGitHubApps: true category: activity subcategory: starring + "/repos/{owner}/{repo}/stargazers/count": + get: + summary: Get stargazer count + description: Gets the current number of users who have starred the repository. + Users who previously starred the repository but later removed their star are + not included. + tags: + - activity + operationId: activity/get-stargazer-count-for-repo + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/activity/starring#get-stargazer-count + parameters: + - "$ref": "#/components/parameters/owner" + - "$ref": "#/components/parameters/repo" + responses: + '200': + description: Response + content: + application/json: + schema: + type: object + required: + - count + properties: + count: + type: integer + minimum: 0 + examples: + - 42 + examples: + default: + value: + count: 42 + '404': + "$ref": "#/components/responses/not_found" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: activity + subcategory: starring "/repos/{owner}/{repo}/stats/code_frequency": get: summary: Get the weekly commit activity @@ -109292,10 +109333,10 @@ components: additionalProperties: false sha: description: 'The commit SHA associated with this dependency snapshot. Maximum - length: 40 characters.' + length: 64 characters.' type: string minLength: 40 - maxLength: 40 + maxLength: 64 examples: - ddc951f4b1293222421f2c8df679786153acf689 ref: diff --git a/descriptions-next/api.github.com/api.github.com.json b/descriptions-next/api.github.com/api.github.com.json index d9ded37b03..e6e89a1fcd 100644 --- a/descriptions-next/api.github.com/api.github.com.json +++ b/descriptions-next/api.github.com/api.github.com.json @@ -78223,6 +78223,68 @@ } } }, + "/repos/{owner}/{repo}/stargazers/count": { + "get": { + "summary": "Get stargazer count", + "description": "Gets the current number of users who have starred the repository. Users who previously starred the repository but later removed their star are not included.", + "tags": [ + "activity" + ], + "operationId": "activity/get-stargazer-count-for-repo", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/activity/starring#get-stargazer-count" + }, + "parameters": [ + { + "$ref": "#/components/parameters/owner" + }, + { + "$ref": "#/components/parameters/repo" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "count" + ], + "properties": { + "count": { + "type": "integer", + "minimum": 0, + "examples": [ + 42 + ] + } + } + }, + "examples": { + "default": { + "value": { + "count": 42 + } + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "activity", + "subcategory": "starring" + } + } + }, "/repos/{owner}/{repo}/stats/code_frequency": { "get": { "summary": "Get the weekly commit activity", @@ -151437,10 +151499,10 @@ "additionalProperties": false }, "sha": { - "description": "The commit SHA associated with this dependency snapshot. Maximum length: 40 characters.", + "description": "The commit SHA associated with this dependency snapshot. Maximum length: 64 characters.", "type": "string", "minLength": 40, - "maxLength": 40, + "maxLength": 64, "examples": [ "ddc951f4b1293222421f2c8df679786153acf689" ] diff --git a/descriptions-next/api.github.com/api.github.com.yaml b/descriptions-next/api.github.com/api.github.com.yaml index 8ecddbab57..7127c15890 100644 --- a/descriptions-next/api.github.com/api.github.com.yaml +++ b/descriptions-next/api.github.com/api.github.com.yaml @@ -57217,6 +57217,47 @@ paths: enabledForGitHubApps: true category: activity subcategory: starring + "/repos/{owner}/{repo}/stargazers/count": + get: + summary: Get stargazer count + description: Gets the current number of users who have starred the repository. + Users who previously starred the repository but later removed their star are + not included. + tags: + - activity + operationId: activity/get-stargazer-count-for-repo + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/activity/starring#get-stargazer-count + parameters: + - "$ref": "#/components/parameters/owner" + - "$ref": "#/components/parameters/repo" + responses: + '200': + description: Response + content: + application/json: + schema: + type: object + required: + - count + properties: + count: + type: integer + minimum: 0 + examples: + - 42 + examples: + default: + value: + count: 42 + '404': + "$ref": "#/components/responses/not_found" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: activity + subcategory: starring "/repos/{owner}/{repo}/stats/code_frequency": get: summary: Get the weekly commit activity @@ -110486,10 +110527,10 @@ components: additionalProperties: false sha: description: 'The commit SHA associated with this dependency snapshot. Maximum - length: 40 characters.' + length: 64 characters.' type: string minLength: 40 - maxLength: 40 + maxLength: 64 examples: - ddc951f4b1293222421f2c8df679786153acf689 ref: diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json index b0aa6549ba..b6a0b56e22 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json @@ -417794,10 +417794,10 @@ "additionalProperties": false }, "sha": { - "description": "The commit SHA associated with this dependency snapshot. Maximum length: 40 characters.", + "description": "The commit SHA associated with this dependency snapshot. Maximum length: 64 characters.", "type": "string", "minLength": 40, - "maxLength": 40, + "maxLength": 64, "examples": [ "ddc951f4b1293222421f2c8df679786153acf689" ] @@ -722169,6 +722169,103 @@ } } }, + "/repos/{owner}/{repo}/stargazers/count": { + "get": { + "summary": "Get stargazer count", + "description": "Gets the current number of users who have starred the repository. Users who previously starred the repository but later removed their star are not included.", + "tags": [ + "activity" + ], + "operationId": "activity/get-stargazer-count-for-repo", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/activity/starring#get-stargazer-count" + }, + "parameters": [ + { + "name": "owner", + "description": "The account owner of the repository. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "repo", + "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "count" + ], + "properties": { + "count": { + "type": "integer", + "minimum": 0, + "examples": [ + 42 + ] + } + } + }, + "examples": { + "default": { + "value": { + "count": 42 + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "activity", + "subcategory": "starring" + } + } + }, "/repos/{owner}/{repo}/stats/code_frequency": { "get": { "summary": "Get the weekly commit activity", diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml index 5665f1d616..2cf19df48c 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml @@ -83619,10 +83619,10 @@ paths: additionalProperties: false sha: description: 'The commit SHA associated with this dependency snapshot. - Maximum length: 40 characters.' + Maximum length: 64 characters.' type: string minLength: 40 - maxLength: 40 + maxLength: 64 examples: - ddc951f4b1293222421f2c8df679786153acf689 ref: @@ -109104,6 +109104,46 @@ paths: enabledForGitHubApps: true category: activity subcategory: starring + "/repos/{owner}/{repo}/stargazers/count": + get: + summary: Get stargazer count + description: Gets the current number of users who have starred the repository. + Users who previously starred the repository but later removed their star are + not included. + tags: + - activity + operationId: activity/get-stargazer-count-for-repo + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/activity/starring#get-stargazer-count + parameters: + - *341 + - *342 + responses: + '200': + description: Response + content: + application/json: + schema: + type: object + required: + - count + properties: + count: + type: integer + minimum: 0 + examples: + - 42 + examples: + default: + value: + count: 42 + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: activity + subcategory: starring "/repos/{owner}/{repo}/stats/code_frequency": get: summary: Get the weekly commit activity diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json index ce73ab0e95..33ab1f060b 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json @@ -409308,10 +409308,10 @@ "additionalProperties": false }, "sha": { - "description": "The commit SHA associated with this dependency snapshot. Maximum length: 40 characters.", + "description": "The commit SHA associated with this dependency snapshot. Maximum length: 64 characters.", "type": "string", "minLength": 40, - "maxLength": 40, + "maxLength": 64, "examples": [ "ddc951f4b1293222421f2c8df679786153acf689" ] @@ -707876,6 +707876,103 @@ } } }, + "/repos/{owner}/{repo}/stargazers/count": { + "get": { + "summary": "Get stargazer count", + "description": "Gets the current number of users who have starred the repository. Users who previously starred the repository but later removed their star are not included.", + "tags": [ + "activity" + ], + "operationId": "activity/get-stargazer-count-for-repo", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/activity/starring#get-stargazer-count" + }, + "parameters": [ + { + "name": "owner", + "description": "The account owner of the repository. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "repo", + "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "count" + ], + "properties": { + "count": { + "type": "integer", + "minimum": 0, + "examples": [ + 42 + ] + } + } + }, + "examples": { + "default": { + "value": { + "count": 42 + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "activity", + "subcategory": "starring" + } + } + }, "/repos/{owner}/{repo}/stats/code_frequency": { "get": { "summary": "Get the weekly commit activity", diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml index f88381e79d..f13a5f3054 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml @@ -83170,10 +83170,10 @@ paths: additionalProperties: false sha: description: 'The commit SHA associated with this dependency snapshot. - Maximum length: 40 characters.' + Maximum length: 64 characters.' type: string minLength: 40 - maxLength: 40 + maxLength: 64 examples: - ddc951f4b1293222421f2c8df679786153acf689 ref: @@ -108547,6 +108547,46 @@ paths: enabledForGitHubApps: true category: activity subcategory: starring + "/repos/{owner}/{repo}/stargazers/count": + get: + summary: Get stargazer count + description: Gets the current number of users who have starred the repository. + Users who previously starred the repository but later removed their star are + not included. + tags: + - activity + operationId: activity/get-stargazer-count-for-repo + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/activity/starring#get-stargazer-count + parameters: + - *341 + - *342 + responses: + '200': + description: Response + content: + application/json: + schema: + type: object + required: + - count + properties: + count: + type: integer + minimum: 0 + examples: + - 42 + examples: + default: + value: + count: 42 + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: activity + subcategory: starring "/repos/{owner}/{repo}/stats/code_frequency": get: summary: Get the weekly commit activity diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json index f3be6a846b..0394644b65 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json @@ -427013,10 +427013,10 @@ "additionalProperties": false }, "sha": { - "description": "The commit SHA associated with this dependency snapshot. Maximum length: 40 characters.", + "description": "The commit SHA associated with this dependency snapshot. Maximum length: 64 characters.", "type": "string", "minLength": 40, - "maxLength": 40, + "maxLength": 64, "examples": [ "ddc951f4b1293222421f2c8df679786153acf689" ] @@ -737716,6 +737716,103 @@ } } }, + "/repos/{owner}/{repo}/stargazers/count": { + "get": { + "summary": "Get stargazer count", + "description": "Gets the current number of users who have starred the repository. Users who previously starred the repository but later removed their star are not included.", + "tags": [ + "activity" + ], + "operationId": "activity/get-stargazer-count-for-repo", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/activity/starring#get-stargazer-count" + }, + "parameters": [ + { + "name": "owner", + "description": "The account owner of the repository. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "repo", + "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "count" + ], + "properties": { + "count": { + "type": "integer", + "minimum": 0, + "examples": [ + 42 + ] + } + } + }, + "examples": { + "default": { + "value": { + "count": 42 + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "activity", + "subcategory": "starring" + } + } + }, "/repos/{owner}/{repo}/stats/code_frequency": { "get": { "summary": "Get the weekly commit activity", diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml index 3703f3e98a..66d0b3da27 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml @@ -84305,10 +84305,10 @@ paths: additionalProperties: false sha: description: 'The commit SHA associated with this dependency snapshot. - Maximum length: 40 characters.' + Maximum length: 64 characters.' type: string minLength: 40 - maxLength: 40 + maxLength: 64 examples: - ddc951f4b1293222421f2c8df679786153acf689 ref: @@ -109950,6 +109950,46 @@ paths: enabledForGitHubApps: true category: activity subcategory: starring + "/repos/{owner}/{repo}/stargazers/count": + get: + summary: Get stargazer count + description: Gets the current number of users who have starred the repository. + Users who previously starred the repository but later removed their star are + not included. + tags: + - activity + operationId: activity/get-stargazer-count-for-repo + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/activity/starring#get-stargazer-count + parameters: + - *341 + - *342 + responses: + '200': + description: Response + content: + application/json: + schema: + type: object + required: + - count + properties: + count: + type: integer + minimum: 0 + examples: + - 42 + examples: + default: + value: + count: 42 + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: activity + subcategory: starring "/repos/{owner}/{repo}/stats/code_frequency": get: summary: Get the weekly commit activity diff --git a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json index 149826491c..16192a8a84 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json @@ -81632,7 +81632,7 @@ }, "x-github": { "githubCloudOnly": true, - "enabledForGitHubApps": false, + "enabledForGitHubApps": true, "category": "billing", "subcategory": "usage" } @@ -86698,7 +86698,7 @@ }, "x-github": { "githubCloudOnly": true, - "enabledForGitHubApps": false, + "enabledForGitHubApps": true, "category": "billing", "subcategory": "usage" } @@ -88376,7 +88376,7 @@ }, "x-github": { "githubCloudOnly": true, - "enabledForGitHubApps": false, + "enabledForGitHubApps": true, "category": "billing", "subcategory": "usage" } @@ -484346,10 +484346,10 @@ "additionalProperties": false }, "sha": { - "description": "The commit SHA associated with this dependency snapshot. Maximum length: 40 characters.", + "description": "The commit SHA associated with this dependency snapshot. Maximum length: 64 characters.", "type": "string", "minLength": 40, - "maxLength": 40, + "maxLength": 64, "examples": [ "ddc951f4b1293222421f2c8df679786153acf689" ] @@ -492217,7 +492217,8 @@ }, "dismissed_comment": { "type": "string", - "description": "An optional comment explaining the dismissal." + "description": "An optional comment explaining the dismissal.", + "maxLength": 280 } }, "required": [ @@ -492695,7 +492696,8 @@ }, "message": { "type": "string", - "description": "A message to include with the review. Has a maximum character length of 2048." + "description": "A message to include with the review.", + "maxLength": 2048 } }, "required": [ @@ -792918,6 +792920,103 @@ } } }, + "/repos/{owner}/{repo}/stargazers/count": { + "get": { + "summary": "Get stargazer count", + "description": "Gets the current number of users who have starred the repository. Users who previously starred the repository but later removed their star are not included.", + "tags": [ + "activity" + ], + "operationId": "activity/get-stargazer-count-for-repo", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#get-stargazer-count" + }, + "parameters": [ + { + "name": "owner", + "description": "The account owner of the repository. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "repo", + "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "count" + ], + "properties": { + "count": { + "type": "integer", + "minimum": 0, + "examples": [ + 42 + ] + } + } + }, + "examples": { + "default": { + "value": { + "count": 42 + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "activity", + "subcategory": "starring" + } + } + }, "/repos/{owner}/{repo}/stats/code_frequency": { "get": { "summary": "Get the weekly commit activity", diff --git a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml index 95b93c9acb..793eebaa02 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml +++ b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml @@ -28925,7 +28925,7 @@ paths: '503': *196 x-github: githubCloudOnly: true - enabledForGitHubApps: false + enabledForGitHubApps: true category: billing subcategory: usage "/enterprises/{enterprise}/settings/billing/budgets": @@ -30972,7 +30972,7 @@ paths: '503': *196 x-github: githubCloudOnly: true - enabledForGitHubApps: false + enabledForGitHubApps: true category: billing subcategory: usage "/enterprises/{enterprise}/settings/billing/reports": @@ -31499,7 +31499,7 @@ paths: '503': *196 x-github: githubCloudOnly: true - enabledForGitHubApps: false + enabledForGitHubApps: true category: billing subcategory: usage "/enterprises/{enterprise}/teams": @@ -98932,10 +98932,10 @@ paths: additionalProperties: false sha: description: 'The commit SHA associated with this dependency snapshot. - Maximum length: 40 characters.' + Maximum length: 64 characters.' type: string minLength: 40 - maxLength: 40 + maxLength: 64 examples: - ddc951f4b1293222421f2c8df679786153acf689 ref: @@ -100178,6 +100178,7 @@ paths: dismissed_comment: type: string description: An optional comment explaining the dismissal. + maxLength: 280 required: - dismissed_reason examples: @@ -100264,8 +100265,8 @@ paths: - deny message: type: string - description: A message to include with the review. Has a maximum - character length of 2048. + description: A message to include with the review. + maxLength: 2048 required: - status - message @@ -125120,6 +125121,46 @@ paths: enabledForGitHubApps: true category: activity subcategory: starring + "/repos/{owner}/{repo}/stargazers/count": + get: + summary: Get stargazer count + description: Gets the current number of users who have starred the repository. + Users who previously starred the repository but later removed their star are + not included. + tags: + - activity + operationId: activity/get-stargazer-count-for-repo + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#get-stargazer-count + parameters: + - *492 + - *493 + responses: + '200': + description: Response + content: + application/json: + schema: + type: object + required: + - count + properties: + count: + type: integer + minimum: 0 + examples: + - 42 + examples: + default: + value: + count: 42 + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: activity + subcategory: starring "/repos/{owner}/{repo}/stats/code_frequency": get: summary: Get the weekly commit activity diff --git a/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.json b/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.json index 907a382164..817b39a3e3 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.json @@ -81471,7 +81471,7 @@ }, "x-github": { "githubCloudOnly": true, - "enabledForGitHubApps": false, + "enabledForGitHubApps": true, "category": "billing", "subcategory": "usage" } @@ -86537,7 +86537,7 @@ }, "x-github": { "githubCloudOnly": true, - "enabledForGitHubApps": false, + "enabledForGitHubApps": true, "category": "billing", "subcategory": "usage" } @@ -88215,7 +88215,7 @@ }, "x-github": { "githubCloudOnly": true, - "enabledForGitHubApps": false, + "enabledForGitHubApps": true, "category": "billing", "subcategory": "usage" } @@ -475561,10 +475561,10 @@ "additionalProperties": false }, "sha": { - "description": "The commit SHA associated with this dependency snapshot. Maximum length: 40 characters.", + "description": "The commit SHA associated with this dependency snapshot. Maximum length: 64 characters.", "type": "string", "minLength": 40, - "maxLength": 40, + "maxLength": 64, "examples": [ "ddc951f4b1293222421f2c8df679786153acf689" ] @@ -483432,7 +483432,8 @@ }, "dismissed_comment": { "type": "string", - "description": "An optional comment explaining the dismissal." + "description": "An optional comment explaining the dismissal.", + "maxLength": 280 } }, "required": [ @@ -483910,7 +483911,8 @@ }, "message": { "type": "string", - "description": "A message to include with the review. Has a maximum character length of 2048." + "description": "A message to include with the review.", + "maxLength": 2048 } }, "required": [ @@ -778326,6 +778328,103 @@ } } }, + "/repos/{owner}/{repo}/stargazers/count": { + "get": { + "summary": "Get stargazer count", + "description": "Gets the current number of users who have starred the repository. Users who previously starred the repository but later removed their star are not included.", + "tags": [ + "activity" + ], + "operationId": "activity/get-stargazer-count-for-repo", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#get-stargazer-count" + }, + "parameters": [ + { + "name": "owner", + "description": "The account owner of the repository. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "repo", + "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "count" + ], + "properties": { + "count": { + "type": "integer", + "minimum": 0, + "examples": [ + 42 + ] + } + } + }, + "examples": { + "default": { + "value": { + "count": 42 + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "activity", + "subcategory": "starring" + } + } + }, "/repos/{owner}/{repo}/stats/code_frequency": { "get": { "summary": "Get the weekly commit activity", diff --git a/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.yaml b/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.yaml index f4fb312a16..b7e6edb564 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.yaml +++ b/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.yaml @@ -28850,7 +28850,7 @@ paths: '503': *196 x-github: githubCloudOnly: true - enabledForGitHubApps: false + enabledForGitHubApps: true category: billing subcategory: usage "/enterprises/{enterprise}/settings/billing/budgets": @@ -30897,7 +30897,7 @@ paths: '503': *196 x-github: githubCloudOnly: true - enabledForGitHubApps: false + enabledForGitHubApps: true category: billing subcategory: usage "/enterprises/{enterprise}/settings/billing/reports": @@ -31424,7 +31424,7 @@ paths: '503': *196 x-github: githubCloudOnly: true - enabledForGitHubApps: false + enabledForGitHubApps: true category: billing subcategory: usage "/enterprises/{enterprise}/teams": @@ -98471,10 +98471,10 @@ paths: additionalProperties: false sha: description: 'The commit SHA associated with this dependency snapshot. - Maximum length: 40 characters.' + Maximum length: 64 characters.' type: string minLength: 40 - maxLength: 40 + maxLength: 64 examples: - ddc951f4b1293222421f2c8df679786153acf689 ref: @@ -99717,6 +99717,7 @@ paths: dismissed_comment: type: string description: An optional comment explaining the dismissal. + maxLength: 280 required: - dismissed_reason examples: @@ -99803,8 +99804,8 @@ paths: - deny message: type: string - description: A message to include with the review. Has a maximum - character length of 2048. + description: A message to include with the review. + maxLength: 2048 required: - status - message @@ -124551,6 +124552,46 @@ paths: enabledForGitHubApps: true category: activity subcategory: starring + "/repos/{owner}/{repo}/stargazers/count": + get: + summary: Get stargazer count + description: Gets the current number of users who have starred the repository. + Users who previously starred the repository but later removed their star are + not included. + tags: + - activity + operationId: activity/get-stargazer-count-for-repo + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#get-stargazer-count + parameters: + - *492 + - *493 + responses: + '200': + description: Response + content: + application/json: + schema: + type: object + required: + - count + properties: + count: + type: integer + minimum: 0 + examples: + - 42 + examples: + default: + value: + count: 42 + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: activity + subcategory: starring "/repos/{owner}/{repo}/stats/code_frequency": get: summary: Get the weekly commit activity diff --git a/descriptions-next/ghec/dereferenced/ghec.deref.json b/descriptions-next/ghec/dereferenced/ghec.deref.json index 23112efb16..20dc0ecb77 100644 --- a/descriptions-next/ghec/dereferenced/ghec.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.deref.json @@ -82104,7 +82104,7 @@ }, "x-github": { "githubCloudOnly": true, - "enabledForGitHubApps": false, + "enabledForGitHubApps": true, "category": "billing", "subcategory": "usage" } @@ -87170,7 +87170,7 @@ }, "x-github": { "githubCloudOnly": true, - "enabledForGitHubApps": false, + "enabledForGitHubApps": true, "category": "billing", "subcategory": "usage" } @@ -88848,7 +88848,7 @@ }, "x-github": { "githubCloudOnly": true, - "enabledForGitHubApps": false, + "enabledForGitHubApps": true, "category": "billing", "subcategory": "usage" } @@ -493813,10 +493813,10 @@ "additionalProperties": false }, "sha": { - "description": "The commit SHA associated with this dependency snapshot. Maximum length: 40 characters.", + "description": "The commit SHA associated with this dependency snapshot. Maximum length: 64 characters.", "type": "string", "minLength": 40, - "maxLength": 40, + "maxLength": 64, "examples": [ "ddc951f4b1293222421f2c8df679786153acf689" ] @@ -501684,7 +501684,8 @@ }, "dismissed_comment": { "type": "string", - "description": "An optional comment explaining the dismissal." + "description": "An optional comment explaining the dismissal.", + "maxLength": 280 } }, "required": [ @@ -502162,7 +502163,8 @@ }, "message": { "type": "string", - "description": "A message to include with the review. Has a maximum character length of 2048." + "description": "A message to include with the review.", + "maxLength": 2048 } }, "required": [ @@ -808713,6 +808715,103 @@ } } }, + "/repos/{owner}/{repo}/stargazers/count": { + "get": { + "summary": "Get stargazer count", + "description": "Gets the current number of users who have starred the repository. Users who previously starred the repository but later removed their star are not included.", + "tags": [ + "activity" + ], + "operationId": "activity/get-stargazer-count-for-repo", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#get-stargazer-count" + }, + "parameters": [ + { + "name": "owner", + "description": "The account owner of the repository. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "repo", + "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "count" + ], + "properties": { + "count": { + "type": "integer", + "minimum": 0, + "examples": [ + 42 + ] + } + } + }, + "examples": { + "default": { + "value": { + "count": 42 + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "activity", + "subcategory": "starring" + } + } + }, "/repos/{owner}/{repo}/stats/code_frequency": { "get": { "summary": "Get the weekly commit activity", diff --git a/descriptions-next/ghec/dereferenced/ghec.deref.yaml b/descriptions-next/ghec/dereferenced/ghec.deref.yaml index 36100c61e7..3cda469f07 100644 --- a/descriptions-next/ghec/dereferenced/ghec.deref.yaml +++ b/descriptions-next/ghec/dereferenced/ghec.deref.yaml @@ -29098,7 +29098,7 @@ paths: '503': *196 x-github: githubCloudOnly: true - enabledForGitHubApps: false + enabledForGitHubApps: true category: billing subcategory: usage "/enterprises/{enterprise}/settings/billing/budgets": @@ -31145,7 +31145,7 @@ paths: '503': *196 x-github: githubCloudOnly: true - enabledForGitHubApps: false + enabledForGitHubApps: true category: billing subcategory: usage "/enterprises/{enterprise}/settings/billing/reports": @@ -31672,7 +31672,7 @@ paths: '503': *196 x-github: githubCloudOnly: true - enabledForGitHubApps: false + enabledForGitHubApps: true category: billing subcategory: usage "/enterprises/{enterprise}/teams": @@ -99631,10 +99631,10 @@ paths: additionalProperties: false sha: description: 'The commit SHA associated with this dependency snapshot. - Maximum length: 40 characters.' + Maximum length: 64 characters.' type: string minLength: 40 - maxLength: 40 + maxLength: 64 examples: - ddc951f4b1293222421f2c8df679786153acf689 ref: @@ -100877,6 +100877,7 @@ paths: dismissed_comment: type: string description: An optional comment explaining the dismissal. + maxLength: 280 required: - dismissed_reason examples: @@ -100963,8 +100964,8 @@ paths: - deny message: type: string - description: A message to include with the review. Has a maximum - character length of 2048. + description: A message to include with the review. + maxLength: 2048 required: - status - message @@ -125979,6 +125980,46 @@ paths: enabledForGitHubApps: true category: activity subcategory: starring + "/repos/{owner}/{repo}/stargazers/count": + get: + summary: Get stargazer count + description: Gets the current number of users who have starred the repository. + Users who previously starred the repository but later removed their star are + not included. + tags: + - activity + operationId: activity/get-stargazer-count-for-repo + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#get-stargazer-count + parameters: + - *492 + - *493 + responses: + '200': + description: Response + content: + application/json: + schema: + type: object + required: + - count + properties: + count: + type: integer + minimum: 0 + examples: + - 42 + examples: + default: + value: + count: 42 + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: activity + subcategory: starring "/repos/{owner}/{repo}/stats/code_frequency": get: summary: Get the weekly commit activity diff --git a/descriptions-next/ghec/ghec.2022-11-28.json b/descriptions-next/ghec/ghec.2022-11-28.json index f6a71fb338..b40932f599 100644 --- a/descriptions-next/ghec/ghec.2022-11-28.json +++ b/descriptions-next/ghec/ghec.2022-11-28.json @@ -18536,7 +18536,7 @@ }, "x-github": { "githubCloudOnly": true, - "enabledForGitHubApps": false, + "enabledForGitHubApps": true, "category": "billing", "subcategory": "usage" } @@ -19970,7 +19970,7 @@ }, "x-github": { "githubCloudOnly": true, - "enabledForGitHubApps": false, + "enabledForGitHubApps": true, "category": "billing", "subcategory": "usage" } @@ -20286,7 +20286,7 @@ }, "x-github": { "githubCloudOnly": true, - "enabledForGitHubApps": false, + "enabledForGitHubApps": true, "category": "billing", "subcategory": "usage" } @@ -73350,7 +73350,8 @@ }, "dismissed_comment": { "type": "string", - "description": "An optional comment explaining the dismissal." + "description": "An optional comment explaining the dismissal.", + "maxLength": 280 } }, "required": [ @@ -73480,7 +73481,8 @@ }, "message": { "type": "string", - "description": "A message to include with the review. Has a maximum character length of 2048." + "description": "A message to include with the review.", + "maxLength": 2048 } }, "required": [ @@ -94079,6 +94081,68 @@ } } }, + "/repos/{owner}/{repo}/stargazers/count": { + "get": { + "summary": "Get stargazer count", + "description": "Gets the current number of users who have starred the repository. Users who previously starred the repository but later removed their star are not included.", + "tags": [ + "activity" + ], + "operationId": "activity/get-stargazer-count-for-repo", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#get-stargazer-count" + }, + "parameters": [ + { + "$ref": "#/components/parameters/owner" + }, + { + "$ref": "#/components/parameters/repo" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "count" + ], + "properties": { + "count": { + "type": "integer", + "minimum": 0, + "examples": [ + 42 + ] + } + } + }, + "examples": { + "default": { + "value": { + "count": 42 + } + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "activity", + "subcategory": "starring" + } + } + }, "/repos/{owner}/{repo}/stats/code_frequency": { "get": { "summary": "Get the weekly commit activity", @@ -174961,10 +175025,10 @@ "additionalProperties": false }, "sha": { - "description": "The commit SHA associated with this dependency snapshot. Maximum length: 40 characters.", + "description": "The commit SHA associated with this dependency snapshot. Maximum length: 64 characters.", "type": "string", "minLength": 40, - "maxLength": 40, + "maxLength": 64, "examples": [ "ddc951f4b1293222421f2c8df679786153acf689" ] diff --git a/descriptions-next/ghec/ghec.2022-11-28.yaml b/descriptions-next/ghec/ghec.2022-11-28.yaml index 723a0cacbc..9c1f4628ab 100644 --- a/descriptions-next/ghec/ghec.2022-11-28.yaml +++ b/descriptions-next/ghec/ghec.2022-11-28.yaml @@ -13713,7 +13713,7 @@ paths: "$ref": "#/components/responses/service_unavailable" x-github: githubCloudOnly: true - enabledForGitHubApps: false + enabledForGitHubApps: true category: billing subcategory: usage "/enterprises/{enterprise}/settings/billing/budgets": @@ -14765,7 +14765,7 @@ paths: "$ref": "#/components/responses/service_unavailable" x-github: githubCloudOnly: true - enabledForGitHubApps: false + enabledForGitHubApps: true category: billing subcategory: usage "/enterprises/{enterprise}/settings/billing/reports": @@ -14971,7 +14971,7 @@ paths: "$ref": "#/components/responses/service_unavailable" x-github: githubCloudOnly: true - enabledForGitHubApps: false + enabledForGitHubApps: true category: billing subcategory: usage "/enterprises/{enterprise}/teams": @@ -53931,6 +53931,7 @@ paths: dismissed_comment: type: string description: An optional comment explaining the dismissal. + maxLength: 280 required: - dismissed_reason examples: @@ -54022,8 +54023,8 @@ paths: - deny message: type: string - description: A message to include with the review. Has a maximum - character length of 2048. + description: A message to include with the review. + maxLength: 2048 required: - status - message @@ -68735,6 +68736,47 @@ paths: enabledForGitHubApps: true category: activity subcategory: starring + "/repos/{owner}/{repo}/stargazers/count": + get: + summary: Get stargazer count + description: Gets the current number of users who have starred the repository. + Users who previously starred the repository but later removed their star are + not included. + tags: + - activity + operationId: activity/get-stargazer-count-for-repo + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#get-stargazer-count + parameters: + - "$ref": "#/components/parameters/owner" + - "$ref": "#/components/parameters/repo" + responses: + '200': + description: Response + content: + application/json: + schema: + type: object + required: + - count + properties: + count: + type: integer + minimum: 0 + examples: + - 42 + examples: + default: + value: + count: 42 + '404': + "$ref": "#/components/responses/not_found" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: activity + subcategory: starring "/repos/{owner}/{repo}/stats/code_frequency": get: summary: Get the weekly commit activity @@ -127638,10 +127680,10 @@ components: additionalProperties: false sha: description: 'The commit SHA associated with this dependency snapshot. Maximum - length: 40 characters.' + length: 64 characters.' type: string minLength: 40 - maxLength: 40 + maxLength: 64 examples: - ddc951f4b1293222421f2c8df679786153acf689 ref: diff --git a/descriptions-next/ghec/ghec.2026-03-10.json b/descriptions-next/ghec/ghec.2026-03-10.json index 2713c3d6be..385d42af33 100644 --- a/descriptions-next/ghec/ghec.2026-03-10.json +++ b/descriptions-next/ghec/ghec.2026-03-10.json @@ -18536,7 +18536,7 @@ }, "x-github": { "githubCloudOnly": true, - "enabledForGitHubApps": false, + "enabledForGitHubApps": true, "category": "billing", "subcategory": "usage" } @@ -19970,7 +19970,7 @@ }, "x-github": { "githubCloudOnly": true, - "enabledForGitHubApps": false, + "enabledForGitHubApps": true, "category": "billing", "subcategory": "usage" } @@ -20286,7 +20286,7 @@ }, "x-github": { "githubCloudOnly": true, - "enabledForGitHubApps": false, + "enabledForGitHubApps": true, "category": "billing", "subcategory": "usage" } @@ -73255,7 +73255,8 @@ }, "dismissed_comment": { "type": "string", - "description": "An optional comment explaining the dismissal." + "description": "An optional comment explaining the dismissal.", + "maxLength": 280 } }, "required": [ @@ -73385,7 +73386,8 @@ }, "message": { "type": "string", - "description": "A message to include with the review. Has a maximum character length of 2048." + "description": "A message to include with the review.", + "maxLength": 2048 } }, "required": [ @@ -93970,6 +93972,68 @@ } } }, + "/repos/{owner}/{repo}/stargazers/count": { + "get": { + "summary": "Get stargazer count", + "description": "Gets the current number of users who have starred the repository. Users who previously starred the repository but later removed their star are not included.", + "tags": [ + "activity" + ], + "operationId": "activity/get-stargazer-count-for-repo", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#get-stargazer-count" + }, + "parameters": [ + { + "$ref": "#/components/parameters/owner" + }, + { + "$ref": "#/components/parameters/repo" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "required": [ + "count" + ], + "properties": { + "count": { + "type": "integer", + "minimum": 0, + "examples": [ + 42 + ] + } + } + }, + "examples": { + "default": { + "value": { + "count": 42 + } + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "activity", + "subcategory": "starring" + } + } + }, "/repos/{owner}/{repo}/stats/code_frequency": { "get": { "summary": "Get the weekly commit activity", @@ -174299,10 +174363,10 @@ "additionalProperties": false }, "{"code":"deadline_exceeded","msg":"operation timed out"}