Now that the release liaison info lives in data/release_liaisons.yaml, we don't need to pull from the wiki. This patch also adds a schema to verify the release_liaions.yaml is formatted correctly. Story: 2005702 Task: 33639 Task: 33733 Change-Id: Ic4de16c26bb1a4fb878b86d2bd9c59bf5f54d11d
23 lines
471 B
YAML
23 lines
471 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: "array"
|
|
items:
|
|
type: "object"
|
|
name:
|
|
type: "object"
|
|
additionalProperties: false
|
|
required:
|
|
- irc
|
|
- email
|
|
properties:
|
|
name:
|
|
type: "string"
|
|
irc:
|
|
type: "string"
|
|
email:
|
|
type: "string" |