Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 24 additions & 4 deletions descriptions-next/api.github.com/api.github.com.2022-11-28.json
Original file line number Diff line number Diff line change
Expand Up @@ -7896,6 +7896,9 @@
},
"allowed_actions": {
"$ref": "#/components/schemas/allowed-actions"
},
"sha_pinning_required": {
"$ref": "#/components/schemas/sha-pinning-required"
}
},
"required": [
Expand All @@ -7906,7 +7909,8 @@
"default": {
"value": {
"enabled_repositories": "all",
"allowed_actions": "selected"
"allowed_actions": "selected",
"sha_pinning_required": true
}
}
}
Expand Down Expand Up @@ -29809,6 +29813,9 @@
},
"allowed_actions": {
"$ref": "#/components/schemas/allowed-actions"
},
"sha_pinning_required": {
"$ref": "#/components/schemas/sha-pinning-required"
}
},
"required": [
Expand All @@ -29819,7 +29826,8 @@
"default": {
"value": {
"enabled": true,
"allowed_actions": "selected"
"allowed_actions": "selected",
"sha_pinning_required": true
}
}
}
Expand Down Expand Up @@ -108280,6 +108288,10 @@
"type": "string",
"description": "The API URL to use to get or set the actions and reusable workflows that are allowed to run, when `allowed_actions` is set to `selected`."
},
"sha-pinning-required": {
"type": "boolean",
"description": "Whether actions must be pinned to a full-length commit SHA."
},
"actions-organization-permissions": {
"type": "object",
"properties": {
Expand All @@ -108295,6 +108307,9 @@
},
"selected_actions_url": {
"$ref": "#/components/schemas/selected-actions-url"
},
"sha_pinning_required": {
"$ref": "#/components/schemas/sha-pinning-required"
}
},
"required": [
Expand Down Expand Up @@ -118544,6 +118559,9 @@
},
"selected_actions_url": {
"$ref": "#/components/schemas/selected-actions-url"
},
"sha_pinning_required": {
"$ref": "#/components/schemas/sha-pinning-required"
}
},
"required": [
Expand Down Expand Up @@ -286475,7 +286493,8 @@
"value": {
"enabled_repositories": "all",
"allowed_actions": "selected",
"selected_actions_url": "https://api.github.com/organizations/42/actions/permissions/selected-actions"
"selected_actions_url": "https://api.github.com/organizations/42/actions/permissions/selected-actions",
"sha_pinning_required": true
}
},
"actions-fork-pr-contributor-approval": {
Expand Down Expand Up @@ -293716,7 +293735,8 @@
"value": {
"enabled": true,
"allowed_actions": "selected",
"selected_actions_url": "https://api.github.com/repositories/42/actions/permissions/selected-actions"
"selected_actions_url": "https://api.github.com/repositories/42/actions/permissions/selected-actions",
"sha_pinning_required": true
}
},
"actions-workflow-access-to-repository": {
Expand Down
Loading