Skip to content

Commit

Permalink
Fix added link for bitbucket pipelines manifest (#1278)
Browse files Browse the repository at this point in the history
Previously in 09da22f the bitbucket pipelines manifest JSON schema has
been linked in catalog.json for the first time.

It introduced two file-names matching the schema of which one was wrong.

The wrong file-name is with the .yaml extension, the correct name is with
the .yml extension.

Fix is to remove the wrong file-name from the catalogs' file-match array
for bitbucket-pipelines.yml JSON schema.

JSON-Catalog-Name: bitbucket-pipelines
Ref: 09da22f
Caused-By: #1126
  • Loading branch information
ktomk authored Oct 5, 2020
1 parent fd51af8 commit cd47418
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/api/json/catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,7 @@
"description": "Bitbucket Pipelines CI/CD manifest schema",
"url": "https://bitbucket.org/atlassianlabs/atlascode/raw/main/resources/schemas/pipelines-schema.json",
"fileMatch": [
"bitbucket-pipelines.yml",
"bitbucket-pipelines.yaml"
"bitbucket-pipelines.yml"
]
},
{
Expand Down

0 comments on commit cd47418

Please sign in to comment.