From 8a416bc876574e717ce0a11cc4a0890f1f670b3b Mon Sep 17 00:00:00 2001 From: Derek Roberts Date: Wed, 7 Feb 2024 15:59:49 -0800 Subject: [PATCH] Test --- .github/workflows/pr-open.yml | 60 +++++++++++++++++++---------------- 1 file changed, 33 insertions(+), 27 deletions(-) diff --git a/.github/workflows/pr-open.yml b/.github/workflows/pr-open.yml index 16160fc0f..10b07baec 100644 --- a/.github/workflows/pr-open.yml +++ b/.github/workflows/pr-open.yml @@ -9,32 +9,38 @@ concurrency: cancel-in-progress: true jobs: - # https://github.com/bcgov-nr/action-builder-ghcr - builds: - name: Builds - runs-on: ubuntu-22.04 - permissions: - packages: write - strategy: - matrix: - package: [migrations, backend, frontend] - timeout-minutes: 10 - steps: - - uses: bcgov-nr/action-builder-ghcr@v2.0.1 - with: - keep_versions: 50 - package: ${{ matrix.package }} - tag: ${{ github.event.number }} - tag_fallback: latest - triggers: ('${{ matrix.package }}/') + # # https://github.com/bcgov-nr/action-builder-ghcr + # builds: + # name: Builds + # runs-on: ubuntu-22.04 + # permissions: + # packages: write + # strategy: + # matrix: + # package: [migrations, backend, frontend] + # timeout-minutes: 10 + # steps: + # - uses: bcgov-nr/action-builder-ghcr@v2.0.1 + # with: + # keep_versions: 50 + # package: ${{ matrix.package }} + # tag: ${{ github.event.number }} + # tag_fallback: latest + # triggers: ('${{ matrix.package }}/') - # https://github.com/bcgov-nr/action-deployer-openshift - deploys: - name: Deploys - needs: [builds] - uses: ./.github/workflows/.deploy.yml - secrets: inherit + # # https://github.com/bcgov-nr/action-deployer-openshift + # deploys: + # name: Deploys + # needs: [builds] + # uses: ./.github/workflows/.deploy.yml + # secrets: inherit + # with: + # tag: ${{ github.event.number }} + # release: ${{ github.event.number }} + # triggers: ('backend/' 'frontend/' 'migrations/' 'charts/') + + tests: + name: Tests + uses: ./.github/workflows/.tests.yml with: - tag: ${{ github.event.number }} - release: ${{ github.event.number }} - triggers: ('backend/' 'frontend/' 'migrations/' 'charts/') + target: ${{ github.event.number }}