Files
noahspan-flying/.github/workflows/pull_request.yaml
noahspannbauer 02482a4c32 36 fix logbook edit view error (#37)
* fixing log view edit error

* fixing log view edit error

* fixing log view edit error

* fixing log view edit error
2025-02-02 19:51:42 -06:00

31 lines
637 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.yaml
with:
environment_name: pull_request
version_number: ${{ github.run_id }}
secrets: inherit