diff options
author | rafael <rafael@blueskyweb.xyz> | 2025-07-24 17:29:25 -0300 |
---|---|---|
committer | rafael <rafael@blueskyweb.xyz> | 2025-07-24 17:29:25 -0300 |
commit | d1dbc4f85242ee5fdacd28ff5fad9552ceb139f2 (patch) | |
tree | 034d907439c091e915398cbe5b097e4b0614bc87 /.github | |
parent | fc2fae42bd8d90fd15b06c14a781efb79bc14e1d (diff) | |
download | voidsky-d1dbc4f85242ee5fdacd28ff5fad9552ceb139f2.tar.zst |
Conditional workflows
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build-submit-android.yml | 1 | ||||
-rw-r--r-- | .github/workflows/build-submit-ios.yml | 1 | ||||
-rw-r--r-- | .github/workflows/bundle-deploy-eas-update.yml | 5 |
3 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/build-submit-android.yml b/.github/workflows/build-submit-android.yml index f75c95052..e862a701f 100644 --- a/.github/workflows/build-submit-android.yml +++ b/.github/workflows/build-submit-android.yml @@ -13,6 +13,7 @@ on: jobs: build: + if: github.repository == 'bluesky-social/social-app' name: Build and Submit Android runs-on: ubuntu-latest steps: diff --git a/.github/workflows/build-submit-ios.yml b/.github/workflows/build-submit-ios.yml index dd7c5f85b..a197695db 100644 --- a/.github/workflows/build-submit-ios.yml +++ b/.github/workflows/build-submit-ios.yml @@ -13,6 +13,7 @@ on: jobs: build: + if: github.repository == 'bluesky-social/social-app' name: Build and Submit iOS runs-on: macos-15 steps: diff --git a/.github/workflows/bundle-deploy-eas-update.yml b/.github/workflows/bundle-deploy-eas-update.yml index 5a4702f96..475bc087f 100644 --- a/.github/workflows/bundle-deploy-eas-update.yml +++ b/.github/workflows/bundle-deploy-eas-update.yml @@ -20,6 +20,7 @@ on: jobs: bundleDeploy: + if: github.repository == 'bluesky-social/social-app' name: Bundle and Deploy EAS Update runs-on: ubuntu-latest concurrency: @@ -150,7 +151,7 @@ jobs: needs: [bundleDeploy] # Gotta check if its NOT '[]' because any md5 hash in the outputs is detected as a possible secret and won't be # available here - if: ${{ inputs.channel != 'production' && needs.bundleDeploy.outputs.changes-detected }} + if: ${{ inputs.channel != 'production' && needs.bundleDeploy.outputs.changes-detected && github.repository == 'bluesky-social/social-app' }} steps: - name: Check for EXPO_TOKEN run: > @@ -239,7 +240,7 @@ jobs: needs: [bundleDeploy] # Gotta check if its NOT '[]' because any md5 hash in the outputs is detected as a possible secret and won't be # available here - if: ${{ inputs.channel != 'production' && needs.bundleDeploy.outputs.changes-detected }} + if: ${{ inputs.channel != 'production' && needs.bundleDeploy.outputs.changes-detected && github.repository == 'bluesky-social/social-app'}} steps: - name: Check for EXPO_TOKEN |