Open
Description
Schema Inaccuracy
Docs: https://docs.github.com/en/rest/releases/releases?apiVersion=2022-11-28#create-a-release
Schema:
make_latest:
type: string
enum:
- 'true'
- 'false'
- legacy
default: true
default value of make_latest
is a boolean value (not quoted).
update: the update-release
api also has the error default value for make_latest
.
Expected
make_latest:
type: string
enum:
- 'true'
- 'false'
- legacy
default: 'true'
Reproduction Steps
pass
Activity
hfhbd commentedon Jun 17, 2024
Any chance to update this field? It is truely wrong, and I need to fix this field manually everytime I fetch the latest API.