system-config/tools/atc
Clark Boylan 67c4e0202d Finish removing git.openstack.org references
The remaining references are actually about the service itself.

Change-Id: Id40dd72370add572fec615e0b5cd8c8bd3a200f8
2022-03-18 09:22:37 -07:00
..
README Rename review.openstack.org to review.opendev.org 2019-05-09 14:38:51 +00:00
diff.py Fix pep8 errors in modules dir 2013-11-12 11:30:34 -05:00
email_stats.py Finish removing git.openstack.org references 2022-03-18 09:22:37 -07:00

README

These are the scripts used to create the ATC lists for use in PTL
elections and Summit invitations.

1) Run the following queries on review.opendev.org:

  sudo -H mysql -e 'SELECT * FROM accounts;' reviewdb > accounts.tab
  sudo -H mysql -e 'SELECT * FROM account_external_ids;' reviewdb > emails.tab

2) Copy those files to this directory.
3) Run:

  mkdir out
  virtualenv venv
  . venv/bin/activate
  pip install paramiko requests pyyaml
  ./email_stats.py --begin <BEGINTIME>
  # optionally specify --end, --keyfile, --ref and --user
  TIME=`date +%Y%m%d%H%M%S`
  mv out $TIME
  cat $TIME/*.csv | sort | uniq > $TIME/all.csv

4) You can use diff.py to get the new ATCs since the previous run:

  ./diff.py $OLD-TIME/all.csv $TIME/all.csv $TIME/new.csv