Files
noahspan-root/.github/workflows/pull_request.yaml
noahspannbauer a7ffdd0900 Moving app to azure storage (#16)
* Moving app to azure storage

* Moving app to azure storage

* Moving app to azure storage
2025-04-19 09:31:58 -05:00

31 lines
644 B
YAML

name: Pull Request
on:
pull_request:
jobs:
changes:
uses: ./.github/workflows/changes.yaml
build-api:
if: ${{ needs.changes.outputs.api == 'true' }}
name: build-api
needs:
- changes
uses: ./.github/workflows/api_build.yaml
with:
environment_name: pull_request
version_number: ${{ github.run_id }}
secrets: inherit
build-app:
if: ${{ needs.changes.outputs.app == 'true' }}
name: build-app
needs:
- changes
uses: ./.github/workflows/app_build_deploy.yaml
with:
environment_name: pull_request
version_number: ${{ github.run_id }}
secrets: inherit