Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typo in api spec #319

Merged
merged 1 commit into from
Jul 23, 2024
Merged
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
20 changes: 10 additions & 10 deletions api/openapi-v3-spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2219,55 +2219,55 @@ components:
type: object
properties:
requirePR:
description: Forces creating a PR to update the proteced refs.
description: Forces creating a PR to update the protected refs.
type: array
items:
$ref: '#/components/schemas/ProtectedRef'
preventAllChanges:
description: Prevents all changes of the proteced refs.
description: Prevents all changes of the protected refs.
type: array
items:
$ref: '#/components/schemas/ProtectedRef'
preventCreation:
description: Prevents creation of the proteced refs. Results in preventAllChanges for BitBucket.
description: Prevents creation of the protected refs. Results in preventAllChanges for BitBucket.
type: array
items:
$ref: '#/components/schemas/ProtectedRef'
preventDeletion:
description: Prevents deletion of the proteced refs.
description: Prevents deletion of the protected refs.
type: array
items:
$ref: '#/components/schemas/ProtectedRef'
preventPush:
description: Prevents pushes to the proteced refs. Results in preventAllChanges for BitBucket.
description: Prevents pushes to the protected refs. Results in preventAllChanges for BitBucket.
type: array
items:
$ref: '#/components/schemas/ProtectedRef'
preventForcePush:
description: Prevents force pushes to the proteced refs for users with push permission.
description: Prevents force pushes to the protected refs for users with push permission.
type: array
items:
$ref: '#/components/schemas/ProtectedRef'
tags:
type: object
properties:
preventAllChanges:
description: Prevents all changes of the proteced refs.
description: Prevents all changes of the protected refs.
type: array
items:
$ref: '#/components/schemas/ProtectedRef'
preventCreation:
description: Prevents creation of the proteced refs. Results in preventAllChanges for BitBucket.
description: Prevents creation of the protected refs. Results in preventAllChanges for BitBucket.
type: array
items:
$ref: '#/components/schemas/ProtectedRef'
preventDeletion:
description: Prevents deletion of the proteced refs.
description: Prevents deletion of the protected refs.
type: array
items:
$ref: '#/components/schemas/ProtectedRef'
preventForcePush:
description: Prevents force pushes to the proteced refs for users with push permission.
description: Prevents force pushes to the protected refs for users with push permission.
type: array
items:
$ref: '#/components/schemas/ProtectedRef'
Expand Down
Loading