Skip to content

Instantly share code, notes, and snippets.

@jpbetz
Created February 11, 2024 17:07
Show Gist options
  • Save jpbetz/42299e58b87b826d821d368cb68ba417 to your computer and use it in GitHub Desktop.
Save jpbetz/42299e58b87b826d821d368cb68ba417 to your computer and use it in GitHub Desktop.
# KEP Authors
echo keps/*/*/kep.yaml | xargs -n 1 yq "select(.status == \"implemented\" or .status == \"implementable\") | .authors[]" | sort | uniq -c | sort -n
# KEP Reviewers
echo keps/*/*/kep.yaml | xargs -n 1 yq "select(.status == \"implemented\" or .status == \"implementable\") | .reviewers[]" | sort | uniq -c | sort -n
# KEP Approvers
echo keps/*/*/kep.yaml | xargs -n 1 yq "select(.status == \"implemented\" or .status == \"implementable\") | .approvers[]" | sort | uniq -c | sort -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment