This repository contains the metadata configuration for the Red Hat Community of Practice Github Organization. The data here is consumed by the peribolos tool to maintain organization and team membership, as well as team creation and deletion.
Please keep the config.yaml
file recursively sorted.
yq
can be helpful here:
# downcase all lists
yq -i e '(... | select(type == "!!seq"))[] |= downcase' config.yaml && \
# sort all lists
yq -i e '(... | select(type == "!!seq")) |= sort' config.yaml && \
# sort all keys
yq -i 'sort_keys(..)' config.yaml
Need support? Open an issue.