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(git-tokens): preserve previous params order #482

Merged
merged 1 commit into from
Oct 25, 2023
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
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
get:

Check warning on line 1 in src/resources/OrganizationAccountGitRepositoryBitbucketBranch.yaml

View workflow job for this annotation

GitHub Actions / Lint (pull_request)

operation-description

Operation "description" must be present and non-empty string.
summary: 'Get bitbucket branches of the specified repository'
operationId: getOrganizationBitbucketRepositoryBranches
tags:
Expand All @@ -6,16 +6,16 @@
parameters:
- $ref: '../parameters/path/organizationId.yaml'
- in: query
name: gitTokenId
name: name
schema:
type: string
format: uuid
description: The git token id that must be used for the application
description: The name of the repository where to retrieve the branches
- in: query
name: name
name: gitTokenId
schema:
type: string
description: The name of the repository where to retrieve the branches
format: uuid
description: The git token id that must be used for the application
responses:
'200':
description: 'Get bitbucket repository branches'
Expand Down
10 changes: 5 additions & 5 deletions src/resources/OrganizationAccountGitRepositoryGithubBranch.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
get:

Check warning on line 1 in src/resources/OrganizationAccountGitRepositoryGithubBranch.yaml

View workflow job for this annotation

GitHub Actions / Lint (pull_request)

operation-description

Operation "description" must be present and non-empty string.
summary: 'Get github branches of the specified repository'
operationId: getOrganizationGithubRepositoryBranches
tags:
Expand All @@ -6,16 +6,16 @@
parameters:
- $ref: '../parameters/path/organizationId.yaml'
- in: query
name: gitTokenId
name: name
schema:
type: string
format: uuid
description: The git token id that must be used for the application
description: The name of the repository where to retrieve the branches
- in: query
name: name
name: gitTokenId
schema:
type: string
description: The name of the repository where to retrieve the branches
format: uuid
description: The git token id that must be used for the application
responses:
'200':
description: 'Get github repository branches'
Expand Down
10 changes: 5 additions & 5 deletions src/resources/OrganizationAccountGitRepositoryGitlabBranch.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
get:

Check warning on line 1 in src/resources/OrganizationAccountGitRepositoryGitlabBranch.yaml

View workflow job for this annotation

GitHub Actions / Lint (pull_request)

operation-description

Operation "description" must be present and non-empty string.
summary: 'Get gitlab branches of the specified repository'
operationId: getOrganizationGitlabRepositoryBranches
tags:
Expand All @@ -6,16 +6,16 @@
parameters:
- $ref: '../parameters/path/organizationId.yaml'
- in: query
name: gitTokenId
name: name
schema:
type: string
format: uuid
description: The git token id that must be used for the application
description: The name of the repository to retrieve the branches
- in: query
name: name
name: gitTokenId
schema:
type: string
description: The name of the repository to retrieve the branches
format: uuid
description: The git token id that must be used for the application
responses:
'200':
description: 'Get gitlab repository branches'
Expand Down
Loading