From: Jessica Wagantall Date: Wed, 15 Apr 2020 22:51:08 +0000 (-0700) Subject: Bool is not a valid schema type X-Git-Tag: v0.53.0~3 X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=commitdiff_plain;h=029cdae0236928134d24d9bef6d8c4de74543985;p=releng%2Fglobal-jjb.git Bool is not a valid schema type Using boolean rather than bool. Signed-off-by: Jessica Wagantall Change-Id: Ied68c7f1a2fd4474e9fee65b2820e6c25f662b5f --- diff --git a/releasenotes/notes/fix-boolean-schema-release-jobs-487bf0b62ba082c7.yaml b/releasenotes/notes/fix-boolean-schema-release-jobs-487bf0b62ba082c7.yaml new file mode 100644 index 00000000..f2850002 --- /dev/null +++ b/releasenotes/notes/fix-boolean-schema-release-jobs-487bf0b62ba082c7.yaml @@ -0,0 +1,4 @@ +--- +fixes: + - | + Schema type "bool" is not valid. Fix to "boolean" diff --git a/schema/release-container-schema.yaml b/schema/release-container-schema.yaml index f2b4fd9c..024ee4e6 100644 --- a/schema/release-container-schema.yaml +++ b/schema/release-container-schema.yaml @@ -42,4 +42,4 @@ properties: ref: type: "string" tag_release: - type: "bool" + type: "boolean" diff --git a/schema/release-packagecloud-schema.yaml b/schema/release-packagecloud-schema.yaml index f18529cc..40af30da 100644 --- a/schema/release-packagecloud-schema.yaml +++ b/schema/release-packagecloud-schema.yaml @@ -33,6 +33,6 @@ properties: log_dir: type: "string" tag_release: - type: "bool" + type: "boolean" version: type: "string" diff --git a/schema/release-pypi-schema.yaml b/schema/release-pypi-schema.yaml index 14136c25..ab720fea 100644 --- a/schema/release-pypi-schema.yaml +++ b/schema/release-pypi-schema.yaml @@ -27,6 +27,6 @@ properties: python_version: type: "string" tag_release: - type: "bool" + type: "boolean" version: type: "string" diff --git a/schema/release-schema.yaml b/schema/release-schema.yaml index 02b87bc3..cf027efa 100644 --- a/schema/release-schema.yaml +++ b/schema/release-schema.yaml @@ -27,6 +27,6 @@ properties: project: type: "string" tag_release: - type: "bool" + type: "boolean" version: type: "string"