Points de terminaison d’API REST pour la qualité du code
Utilisez l’API REST pour gérer une configuration de qualité du code.
Get a code quality setup configuration
Gets a code quality setup configuration.
OAuth app tokens and personal access tokens (classic) need the repo scope to use this endpoint with private or public repositories, or the public_repo scope to use this endpoint with only public repositories.
Jetons d'accès granulaires pour «Get a code quality setup configuration»
Ce point de terminaison fonctionne avec les types de tokens à granularité fine suivants:
- jetons d’accès utilisateur de l’application GitHub
- jetons d’accès d’installation de l’application GitHub
- Tokens d’accès personnel à granularité fine
Le token à granularité fine doit disposer de l’ensemble d’autorisations suivant:
- "Administration" repository permissions (write)
Paramètres pour «Get a code quality setup configuration »
| Nom, Type, Description |
|---|
accept string Setting to |
| Nom, Type, Description |
|---|
owner string RequisThe account owner of the repository. The name is not case sensitive. |
repo string RequisThe name of the repository without the |
Codes d’état de réponse HTTP pour «Get a code quality setup configuration »
| Code de statut | Description |
|---|---|
200 | OK |
403 | Response if the user is not authorized to access Code quality for this repository. |
404 | Resource not found |
503 | Service unavailable |
Exemples de code pour «Get a code quality setup configuration »
Exemple de requête
curl -L \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer <YOUR-TOKEN>" \
-H "X-GitHub-Api-Version: 2026-03-10" \
https://api.github.com/repos/OWNER/REPO/code-quality/setupResponse
Status: 200{
"state": "configured",
"languages": [
"javascript-typescript",
"python"
],
"runner_type": "standard",
"runner_label": null,
"updated_at": "2023-01-01T00:00:00Z",
"schedule": "weekly"
}Update a code quality setup configuration
Updates a code quality setup configuration.
OAuth app tokens and personal access tokens (classic) need the repo scope to use this endpoint with private or public repositories, or the public_repo scope to use this endpoint with only public repositories.
Jetons d'accès granulaires pour «Update a code quality setup configuration»
Ce point de terminaison fonctionne avec les types de tokens à granularité fine suivants:
- jetons d’accès utilisateur de l’application GitHub
- jetons d’accès d’installation de l’application GitHub
- Tokens d’accès personnel à granularité fine
Le token à granularité fine doit disposer de l’ensemble d’autorisations suivant:
- "Administration" repository permissions (write)
Paramètres pour «Update a code quality setup configuration »
| Nom, Type, Description |
|---|
accept string Setting to |
| Nom, Type, Description |
|---|
owner string RequisThe account owner of the repository. The name is not case sensitive. |
repo string RequisThe name of the repository without the |
| Nom, Type, Description |
|---|
state string The desired state of code quality setup. Peut être l'un des: |
runner_type string Runner type to be used. Peut être l'un des: |
runner_label string or null Runner label to be used if the runner type is labeled. |
languages array of strings Languages to be analyzed.
Supported values are: |
Codes d’état de réponse HTTP pour «Update a code quality setup configuration »
| Code de statut | Description |
|---|---|
200 | OK |
202 | Accepted |
403 | Response if the repository is archived or if Code quality is not enabled for this repository |
404 | Resource not found |
409 | Response if there is already a code quality setup configuration update in progress |
422 | Response if the configuration change cannot be made |
503 | Service unavailable |
Exemples de code pour «Update a code quality setup configuration »
Exemple de requête
curl -L \
-X PATCH \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer <YOUR-TOKEN>" \
-H "X-GitHub-Api-Version: 2026-03-10" \
https://api.github.com/repos/OWNER/REPO/code-quality/setup \
-d '{"state":"configured","languages":["javascript-typescript","python","ruby"]}'Response
Status: 202{
"run_id": 42,
"run_url": "https://api.github.com/repos/octocat/hello-world/actions/runs/42"
}