08cf70cbc6
Recent merging of the liaison-loading code in list-changes makes most list-changes job fail due to error in YAML loading code. Beyond that YAML loading issue, the code assumes getting a dictionary with team names as keys and an array of liaisons dictionary as values. Fix the release_liaisons.yaml and schema to match. Change-Id: I94fa41862d37aaf0535d64afd00b2bd55bb4649a
24 lines
489 B
YAML
24 lines
489 B
YAML
---
|
|
$schema: "http://json-schema.org/schema#"
|
|
$id: "https://opendev.org/openstack/releases/src/branch/master/README.rst"
|
|
|
|
# Do not allow any properties not defined here. This lets us catch
|
|
# typos.
|
|
|
|
type: "object"
|
|
additional_properties:
|
|
type: "array"
|
|
items:
|
|
type: "object"
|
|
additionalProperties: false
|
|
required:
|
|
- irc
|
|
- email
|
|
properties:
|
|
name:
|
|
type: "string"
|
|
irc:
|
|
type: "string"
|
|
email:
|
|
type: "string"
|