Skip to content

Commit e5d9ea1

Browse files
mergify-ci-botgithub-actions[bot]
authored andcommitted
chore: sync Mergify JSON Schema files
1 parent 5f9d364 commit e5d9ea1

1 file changed

Lines changed: 0 additions & 211 deletions

File tree

public/api-schemas.json

Lines changed: 0 additions & 211 deletions
Original file line numberDiff line numberDiff line change
@@ -715,213 +715,6 @@
715715
}
716716
}
717717
},
718-
"/badges/{owner}/{repository}.png": {
719-
"get": {
720-
"tags": [
721-
"badges"
722-
],
723-
"summary": "Get PNG badge",
724-
"description": "Get badge in PNG image format",
725-
"operationId": "badge_png_badges__owner___repository__png_get",
726-
"deprecated": true,
727-
"parameters": [
728-
{
729-
"name": "owner",
730-
"in": "path",
731-
"required": true,
732-
"schema": {
733-
"type": "string",
734-
"minLength": 1,
735-
"maxLength": 40,
736-
"pattern": "^[a-zA-Z0-9\\-]+$",
737-
"description": "The owner of the repository",
738-
"title": "Owner"
739-
},
740-
"description": "The owner of the repository"
741-
},
742-
{
743-
"name": "repository",
744-
"in": "path",
745-
"required": true,
746-
"schema": {
747-
"type": "string",
748-
"minLength": 1,
749-
"maxLength": 100,
750-
"pattern": "^[\\w\\-\\.]+$",
751-
"description": "The name of the repository",
752-
"title": "Repository"
753-
},
754-
"description": "The name of the repository"
755-
},
756-
{
757-
"name": "style",
758-
"in": "query",
759-
"required": false,
760-
"schema": {
761-
"type": "string",
762-
"description": "The style of the button, more details on https://shields.io/.",
763-
"default": "flat",
764-
"title": "Style"
765-
},
766-
"description": "The style of the button, more details on https://shields.io/."
767-
}
768-
],
769-
"responses": {
770-
"200": {
771-
"description": "An PNG image.",
772-
"content": {
773-
"image/png": {}
774-
}
775-
},
776-
"403": {
777-
"description": "Forbidden"
778-
},
779-
"404": {
780-
"description": "Not found"
781-
},
782-
"409": {
783-
"description": "Conflict"
784-
},
785-
"422": {
786-
"description": "Unprocessable entity"
787-
}
788-
}
789-
}
790-
},
791-
"/badges/{owner}/{repository}.svg": {
792-
"get": {
793-
"tags": [
794-
"badges"
795-
],
796-
"summary": "Get SVG badge",
797-
"description": "Get badge in SVG image format",
798-
"operationId": "badge_svg_badges__owner___repository__svg_get",
799-
"deprecated": true,
800-
"parameters": [
801-
{
802-
"name": "owner",
803-
"in": "path",
804-
"required": true,
805-
"schema": {
806-
"type": "string",
807-
"minLength": 1,
808-
"maxLength": 40,
809-
"pattern": "^[a-zA-Z0-9\\-]+$",
810-
"description": "The owner of the repository",
811-
"title": "Owner"
812-
},
813-
"description": "The owner of the repository"
814-
},
815-
{
816-
"name": "repository",
817-
"in": "path",
818-
"required": true,
819-
"schema": {
820-
"type": "string",
821-
"minLength": 1,
822-
"maxLength": 100,
823-
"pattern": "^[\\w\\-\\.]+$",
824-
"description": "The name of the repository",
825-
"title": "Repository"
826-
},
827-
"description": "The name of the repository"
828-
},
829-
{
830-
"name": "style",
831-
"in": "query",
832-
"required": false,
833-
"schema": {
834-
"type": "string",
835-
"description": "The style of the button, more details on https://shields.io/.",
836-
"default": "flat",
837-
"title": "Style"
838-
},
839-
"description": "The style of the button, more details on https://shields.io/."
840-
}
841-
],
842-
"responses": {
843-
"200": {
844-
"description": "An SVG image.",
845-
"content": {
846-
"image/png": {}
847-
}
848-
},
849-
"403": {
850-
"description": "Forbidden"
851-
},
852-
"404": {
853-
"description": "Not found"
854-
},
855-
"409": {
856-
"description": "Conflict"
857-
},
858-
"422": {
859-
"description": "Unprocessable entity"
860-
}
861-
}
862-
}
863-
},
864-
"/badges/{owner}/{repository}": {
865-
"get": {
866-
"tags": [
867-
"badges"
868-
],
869-
"summary": "Get shields.io badge config",
870-
"description": "Get shields.io badge JSON configuration",
871-
"operationId": "badge_badges__owner___repository__get",
872-
"deprecated": true,
873-
"parameters": [
874-
{
875-
"name": "owner",
876-
"in": "path",
877-
"required": true,
878-
"schema": {
879-
"type": "string",
880-
"minLength": 1,
881-
"maxLength": 40,
882-
"pattern": "^[a-zA-Z0-9\\-]+$",
883-
"description": "The owner of the repository",
884-
"title": "Owner"
885-
},
886-
"description": "The owner of the repository"
887-
},
888-
{
889-
"name": "repository",
890-
"in": "path",
891-
"required": true,
892-
"schema": {
893-
"type": "string",
894-
"minLength": 1,
895-
"maxLength": 100,
896-
"pattern": "^[\\w\\-\\.]+$",
897-
"description": "The name of the repository",
898-
"title": "Repository"
899-
},
900-
"description": "The name of the repository"
901-
}
902-
],
903-
"responses": {
904-
"200": {
905-
"description": "The shields.io badge JSON configuration",
906-
"content": {
907-
"application/json": {}
908-
}
909-
},
910-
"403": {
911-
"description": "Forbidden"
912-
},
913-
"404": {
914-
"description": "Not found"
915-
},
916-
"409": {
917-
"description": "Conflict"
918-
},
919-
"422": {
920-
"description": "Unprocessable entity"
921-
}
922-
}
923-
}
924-
},
925718
"/repos/{owner}/{repository}/pulls/{number}/simulator": {
926719
"post": {
927720
"tags": [
@@ -20159,10 +19952,6 @@
2015919952
"name": "applications",
2016019953
"description": "Operations with applications."
2016119954
},
20162-
{
20163-
"name": "badges",
20164-
"description": "Operations with badges."
20165-
},
2016619955
{
2016719956
"name": "ci_insights",
2016819957
"description": "Operations with ci insights."

0 commit comments

Comments
 (0)