Skip to content

fix: Change gal to US gallons #1391

fix: Change gal to US gallons

fix: Change gal to US gallons #1391

Workflow file for this run

name: PR
on:
pull_request:
concurrency:
# Cancel in progress for PR open and close
group: ${{ github.event.number }}
cancel-in-progress: true
jobs:
# https://github.com/bcgov-nr/action-builder-ghcr
builds:
name: Builds
runs-on: ubuntu-24.04
strategy:
matrix:
package: [database, backend, frontend]
timeout-minutes: 20
steps:
- uses: bcgov-nr/action-builder-ghcr@ace71f7a527ca6fc43c15c7806314be5a4579d2c # v2.3.0
with:
keep_versions: 50
package: ${{ matrix.package }}
tag: ${{ github.event.number }}
tag_fallback: latest
triggers: ('${{ matrix.package }}/')
# https://github.com/bcgov/quickstart-openshift-helpers
deploys:
name: Deploy
needs: [builds]
secrets: inherit
uses: ./.github/workflows/.deploy.yml
with:
db-pvc-size: 64Mi
db-cpu-request: 30m
backend-cpu-request: 30m
frontend-cpu-request: 30m
tests:
name: Tests
# if: needs.deploys.outputs.triggered == 'true'
needs: [deploys]
uses: ./.github/workflows/.tests.yml
with:
target: ${{ github.event.number }}
results:
name: PR Results
needs: [builds, deploys]
if: always()
runs-on: ubuntu-24.04
steps:
- run: echo "Success!"