lhotari opened a new pull request, #387: URL: https://github.com/apache/pulsar-site/pull/387
Process used to update `data/team.js` file: 1. Logged in to https://whimsy.apache.org/roster/committee/pulsar with browser 2. Appended ".json" to URL so that browser goes to https://whimsy.apache.org/roster/committee/pulsar.json 3. Clicked "Save as..." and stored the JSON as ~/Downloads/pulsar.json 4. Ran this command in a bash shell: ```bash { echo -n "module.exports = " && cat ~/Downloads/pulsar.json | jq '{"pmc": [.roster| to_entries | sort_by(.key) | .[] | select(.value.role|startswith("PMC")) | {"name":.value.name, "apacheId": .key}], "committers": [.roster| to_entries | sort_by(.key) | .[] | select(.value.role=="Committer") | {"name":.value.name, "apacheId": .key}]}' } | perl -pe 's/$/;\n/ if eof' > data/team.js ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
