chore: move any remaining code from WireSystem project into the Swift package - WPB-10368 #1399
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build for PR | |
on: | |
pull_request: | |
types: [ opened, synchronize, edited, ready_for_review ] | |
branches: [ 'develop' ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
checks: write | |
jobs: | |
build_develop: | |
if: > | |
github.event.action != 'edited' || ( | |
github.event.changes.title == null && | |
github.event.changes.body == null && | |
github.event.changes.assignees == null && | |
github.event.changes.reviewers == null && | |
github.event.changes.labels == null | |
) && github.event.pull_request.draft == false | |
uses: ./.github/workflows/_reusable_app_release_without_changelog.yml | |
with: | |
datadog_enabled: false | |
fastlane_action: development_pr | |
is_cloud_build: true | |
pr_s3_path: "PR-${{ github.event.pull_request.number }}" | |
secrets: inherit | |