Skip to content

Commit 5b9dff7

Browse files
Add list backfilled commits script 2
Signed-off-by: Lukasz Gryglicki <[email protected]>
1 parent 82b6b52 commit 5b9dff7

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
11
select dup_actor_id, dup_actor_login, author_id, dup_author_login, author_name, author_email, committer_id, dup_committer_login, committer_name, committer_email from gha_commits where dup_created_at > '2025-10-09';
2+
select * from gha_commits_roles where sha in (select sha from gha_commits where dup_created_at > '2025-10-09');
3+
select sha, event_id, role, count(*) as n
4+
from gha_commits_roles where sha in (select sha from gha_commits where dup_created_at > '2025-10-09')
5+
group by sha, event_id, role
6+
having count(*) > 1
7+
order by role asc, n desc;

0 commit comments

Comments
 (0)