Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Conditional workflows

rafael d1dbc4f8 fc2fae42

+5 -2
+1
.github/workflows/build-submit-android.yml
··· 13 13 14 14 jobs: 15 15 build: 16 + if: github.repository == 'bluesky-social/social-app' 16 17 name: Build and Submit Android 17 18 runs-on: ubuntu-latest 18 19 steps:
+1
.github/workflows/build-submit-ios.yml
··· 13 13 14 14 jobs: 15 15 build: 16 + if: github.repository == 'bluesky-social/social-app' 16 17 name: Build and Submit iOS 17 18 runs-on: macos-15 18 19 steps:
+3 -2
.github/workflows/bundle-deploy-eas-update.yml
··· 20 20 21 21 jobs: 22 22 bundleDeploy: 23 + if: github.repository == 'bluesky-social/social-app' 23 24 name: Bundle and Deploy EAS Update 24 25 runs-on: ubuntu-latest 25 26 concurrency: ··· 150 151 needs: [bundleDeploy] 151 152 # Gotta check if its NOT '[]' because any md5 hash in the outputs is detected as a possible secret and won't be 152 153 # available here 153 - if: ${{ inputs.channel != 'production' && needs.bundleDeploy.outputs.changes-detected }} 154 + if: ${{ inputs.channel != 'production' && needs.bundleDeploy.outputs.changes-detected && github.repository == 'bluesky-social/social-app' }} 154 155 steps: 155 156 - name: Check for EXPO_TOKEN 156 157 run: > ··· 239 240 needs: [bundleDeploy] 240 241 # Gotta check if its NOT '[]' because any md5 hash in the outputs is detected as a possible secret and won't be 241 242 # available here 242 - if: ${{ inputs.channel != 'production' && needs.bundleDeploy.outputs.changes-detected }} 243 + if: ${{ inputs.channel != 'production' && needs.bundleDeploy.outputs.changes-detected && github.repository == 'bluesky-social/social-app'}} 243 244 244 245 steps: 245 246 - name: Check for EXPO_TOKEN