Skip to content

Commit

Permalink
Improve the ranking logic, add forks, refs #127
Browse files Browse the repository at this point in the history
  • Loading branch information
kkamkou committed Nov 19, 2015
1 parent f0fa5e3 commit c69c2ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gitmostwanted/tasks/repo_stars.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def stars_mature(num_days):
TABLE_DATE_RANGE(
githubarchive:day.events_, TIMESTAMP('{date_from}'), CURRENT_TIMESTAMP()
)
WHERE repo.id = {id} AND type = 'WatchEvent'
WHERE repo.id = {id} AND type IN ('WatchEvent', 'ForkEvent')
GROUP BY y, doy
"""
jobs = []
Expand Down

0 comments on commit c69c2ee

Please sign in to comment.