
Rename tools/atc/email-stats.py to tools/atc/email_stats.py in preparation for making it an importable module. This is being separated from the subsequent change to make it more reviewable. Change-Id: I1907de0715c96f54edb44910746fbb24a5ab8665
18 lines
601 B
Bash
Executable File
18 lines
601 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Projects counting for code contribution
|
|
for project in $(
|
|
wget -qO- \
|
|
https://git.openstack.org/cgit/openstack/governance/plain/reference/programs.yaml \
|
|
| grep '^ *- [A-Za-z_-]\+/[A-Za-z_-]\+$' \
|
|
| sed 's/^ *- //'
|
|
) ; do
|
|
python email_stats.py -p $project -o out/$( basename $project ).csv
|
|
done
|
|
|
|
# Confirmed list of non-code contributors
|
|
wget -qO- \
|
|
https://git.openstack.org/cgit/openstack/governance/plain/reference/extra-atcs \
|
|
| sed -e 's/#.*//' -e 's/^\s*//' -e 's/\s*$//' -e '/^$/d' \
|
|
-e 's/[^:]*: \(.*\) (\(.*\)) .*/,\1,\2/' > out/non-code-contributors.csv
|