feat: CE-1189 CE-1190 CE-1191 CE-1194 CD-1195 CE-1196 CE-1197 Various QC and Link Updates / Fixes #3768
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: PR | |
on: | |
pull_request: | |
branches: | |
- release/** | |
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-22.04 | |
strategy: | |
matrix: | |
package: [backend, frontend, migrations, webeoc] | |
timeout-minutes: 10 | |
steps: | |
- uses: bcgov-nr/[email protected] | |
with: | |
package: ${{ matrix.package }} | |
tag: ${{ github.event.number }} | |
tag_fallback: latest | |
triggers: ('${{ matrix.package }}/') | |
# https://github.com/bcgov/quickstart-openshift-helpers | |
deploys: | |
name: Deploys | |
needs: [builds] | |
uses: bcgov/quickstart-openshift-helpers/.github/workflows/[email protected] | |
secrets: | |
oc_namespace: ${{ secrets.OC_NAMESPACE }} | |
oc_token: ${{ secrets.OC_TOKEN }} | |
with: | |
triggers: ('backend/' 'frontend/' 'webeoc/' 'migrations/') | |
tests: | |
name: Tests | |
if: needs.deploys.outputs.triggered == 'true' | |
needs: [deploys] | |
uses: ./.github/workflows/.tests.yml | |
with: | |
target: ${{ github.event.number }} | |
secrets: inherit # so that the tests github action can use the secrests that this action has access to | |
results: | |
name: PR Results | |
needs: [builds, deploys, tests] | |
if: always() && (!failure()) && (!cancelled()) | |
runs-on: ubuntu-22.04 | |
steps: | |
- run: echo "Success!" |