-
Notifications
You must be signed in to change notification settings - Fork 237
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upload voter rolls to the election software #1167
Comments
I just had a call with @lizthegrey and I believe I understand the process now:
I'll work on a script to automate the first item. |
Instead of a script, I think it's easier to just the data from the dashboard itself and filter out the data manually
Alternatively, edit the panel and use the following query. The last step won't be necessary and the data will be cleaner to use on the next steps: select
sub.name as name,
sub.value
from (
select
split_part(name, '$$$', 1) as name,
sum(value) as value
from
shdev
where
series = 'hdev_[[metric]][[repogroup]][[country]]'
and period = '[[period]]'
group by
split_part(name, '$$$', 1)
) sub
where sub.value >= 20
order by name |
This is the current voter roll. The file has the GitHub names in the first column and the number of contributions in the second. I uploaded it already to Helios and will prepare the GitHub comments soon, but perhaps one of you could do a sanity check first? I have 5988 contributions, which is in line with my expectations. |
yup, my contribution count about tracks too, and 500 active contributors feels right for our project |
I ended up creating a repository with all the information and scripts: https://github.com/jpkrohling/voter-roll-otel-elections |
Either @bogdandrutu or @jpkrohling should work on this, perhaps with guidance from @lizthegrey, who did this last year.
The text was updated successfully, but these errors were encountered: