Skip to content

Latest commit

 

History

History
16 lines (9 loc) · 722 Bytes

making_prs_against_a_swagger_ui_repo.md

File metadata and controls

16 lines (9 loc) · 722 Bytes

Making PRs against a Swagger UI repository

Lesson learned on how to make PRs against a Swagger UI repository.

You should not make the changes directly towards swagger-v2.json and swagger-v2.yaml files, or whatever the files with the final definitions are called.

As these files are automatically generated via the tooling.

You have to make the changes against the swagger/specs/index.spec.yaml file and then the changes will be reflected in swagger-v2.json and swagger-v2.yaml file, when the tools are run.

Thanks to my colleague Sumit for teaching me.

Resources and References