Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/deploy-relay.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ concurrency:
jobs:
deploy_relay:
name: Deploy production relay
# Upstream-only: the fork has neither the blacksmith runners nor the
# Cloudflare credentials, so the job would queue forever here.
if: github.repository == 'pingdotgg/t3code'
runs-on: blacksmith-8vcpu-ubuntu-2404
# Fork-only and explicitly opt-in. This prevents accidental upstream deploys
# and keeps the fork from queueing private upstream runners by default.
if: github.repository == 'aaditagrawal/t3code' && vars.RELAY_DEPLOY_ENABLED == 'true'
runs-on: ubuntu-24.04
timeout-minutes: 15
environment:
name: production
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/mobile-eas-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@ name: Mobile EAS Preview

on:
pull_request:
types: [opened, reopened, synchronize, labeled, unlabeled]

jobs:
preview:
name: EAS Preview
# Upstream-only: the fork has neither the blacksmith runners nor the
# Expo credentials, so the job would queue forever here.
if: github.repository == 'pingdotgg/t3code'
runs-on: blacksmith-8vcpu-ubuntu-2404
# Fork-only and label-gated. Keep this off upstream and avoid private
# upstream runners; the token check below skips the body when EAS is not
# configured for the fork.
if: github.repository == 'aaditagrawal/t3code' && contains(github.event.pull_request.labels.*.name, '🚀 Mobile Continuous Deployment')
runs-on: ubuntu-24.04
permissions:
contents: read
pull-requests: write
Expand Down
2 changes: 1 addition & 1 deletion apps/mobile/app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ const config: ExpoConfig = {
projectId: "d763fcb8-d37c-41ea-a773-b54a0ab4a454",
},
},
owner: "pingdotgg",
owner: repoEnv.EXPO_OWNER ?? "aaditagrawal",
};

export default config;
Loading