diff --git a/.github/workflows/build-and-push-bsky-aws.yaml b/.github/workflows/build-and-push-bsky-aws.yaml index 36b1aa23cb3..446e7f45366 100644 --- a/.github/workflows/build-and-push-bsky-aws.yaml +++ b/.github/workflows/build-and-push-bsky-aws.yaml @@ -3,6 +3,7 @@ on: push: branches: - main + - transfer-feeds env: REGISTRY: ${{ secrets.AWS_ECR_REGISTRY_USEAST2_PACKAGES_REGISTRY }} USERNAME: ${{ secrets.AWS_ECR_REGISTRY_USEAST2_PACKAGES_USERNAME }} diff --git a/packages/bsky/src/feed-gen/index.ts b/packages/bsky/src/feed-gen/index.ts index d00d22c59d9..faff46510fd 100644 --- a/packages/bsky/src/feed-gen/index.ts +++ b/packages/bsky/src/feed-gen/index.ts @@ -1,9 +1,9 @@ import { AtUri } from '@atproto/syntax' import { ids } from '../lexicon/lexicons' -import withFriends from './with-friends' +// import withFriends from './with-friends' import bskyTeam from './bsky-team' import hotClassic from './hot-classic' -import bestOfFollows from './best-of-follows' +// import bestOfFollows from './best-of-follows' import mutuals from './mutuals' import { MountedAlgos } from './types' @@ -13,9 +13,9 @@ const feedgenUri = (did, name) => // These are custom algorithms that will be mounted directly onto an AppView // Feel free to remove, update to your own, or serve the following logic at a record that you control export const makeAlgos = (did: string): MountedAlgos => ({ - [feedgenUri(did, 'with-friends')]: withFriends, + // [feedgenUri(did, 'with-friends')]: withFriends, [feedgenUri(did, 'bsky-team')]: bskyTeam, [feedgenUri(did, 'hot-classic')]: hotClassic, - [feedgenUri(did, 'best-of-follows')]: bestOfFollows, + // [feedgenUri(did, 'best-of-follows')]: bestOfFollows, [feedgenUri(did, 'mutuals')]: mutuals, })