Skip to content

fix: PR test triggers #4768

fix: PR test triggers

fix: PR test triggers #4768

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: [backend, frontend, migrations]
# timeout-minutes: 10
# steps:
# - uses: bcgov/[email protected]
# 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: Deploys (${{ github.event.number }})
# needs: [builds]
uses: ./.github/workflows/.deployer.yml
secrets:
oc_namespace: ${{ secrets.OC_NAMESPACE }}
oc_token: ${{ secrets.OC_TOKEN }}
with:
triggers: ('backend/' 'frontend/' 'migrations/' 'charts/')
db_user: app-${{ github.event.number }}
params: --set global.secrets.persist=false
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, tests]
# if: always()
# runs-on: ubuntu-24.04
# steps:
# - if: contains(needs.*.result, 'failure')||contains(needs.*.result, 'canceled')
# run: echo "At least one job has failed." && exit 1
# - run: echo "Success!"