-
Notifications
You must be signed in to change notification settings - Fork 732
Expand file tree
/
Copy pathworkflows.ts
More file actions
27 lines (26 loc) · 1.43 KB
/
workflows.ts
File metadata and controls
27 lines (26 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import { blockOrganizationAffiliation } from './workflows/block-organization-affiliation'
import { cleanupMembers } from './workflows/cleanup/members'
import { cleanupOrganizations } from './workflows/cleanup/organizations'
import { dissectMember } from './workflows/dissectMember'
import { findAndMergeMembersWithSamePlatformIdentitiesDifferentCapitalization } from './workflows/findAndMergeMembersWithSamePlatformIdentitiesDifferentCapitalization'
import { findAndMergeMembersWithSameVerifiedEmailsInDifferentPlatforms } from './workflows/findAndMergeMembersWithSameVerifiedEmailsInDifferentPlatforms'
import { fixBotMembersAffiliation } from './workflows/fix-bot-members-affiliation'
import { fixOrgIdentitiesWithWrongUrls } from './workflows/fixOrgIdentitiesWithWrongUrls'
import { processLLMVerifiedMerges } from './workflows/processLLMVerifiedMerges'
import { pruneDuplicateOrganizations } from './workflows/prune-duplicate-organizations'
import { syncMembers } from './workflows/sync/members'
import { syncOrganizations } from './workflows/sync/organizations'
export {
findAndMergeMembersWithSameVerifiedEmailsInDifferentPlatforms,
findAndMergeMembersWithSamePlatformIdentitiesDifferentCapitalization,
dissectMember,
fixOrgIdentitiesWithWrongUrls,
syncMembers,
syncOrganizations,
cleanupMembers,
cleanupOrganizations,
processLLMVerifiedMerges,
pruneDuplicateOrganizations,
fixBotMembersAffiliation,
blockOrganizationAffiliation,
}