fix(deps): update dependency ngx-bootstrap to v22 (#1066) #147
This file contains hidden or 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: TEST (merge) | |
| on: | |
| push: | |
| branches: [main] | |
| paths-ignore: | |
| - ".github/ISSUE_TEMPLATE/*" | |
| - "**.md" | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }} | |
| cancel-in-progress: true | |
| permissions: {} | |
| jobs: | |
| deploy: | |
| name: Deploy (TEST) | |
| permissions: | |
| contents: read | |
| issues: write | |
| secrets: inherit | |
| uses: ./.github/workflows/.deploy.yml | |
| with: | |
| aws_user_pools_web_client_id: 2t6hr174gbtg206ufgvajrlv0g | |
| batch_client_rfsh_api_tkn_op_secret_name: fom-demo-client-app-api | |
| db_testdata: true | |
| environment: test | |
| email_notify: Heartwood@gov.bc.ca # TEST environment, set to team inbox. | |
| logout_siteminder_url: https://logontest7.gov.bc.ca/clp-cgi/logoff.cgi | |
| logout_keycloak_url: https://test.loginproxy.gov.bc.ca/auth/realms/standard/protocol/openid-connect/logout | |
| target: test | |
| images-promote: | |
| name: Promote images (TEST) | |
| continue-on-error: true # If no prod tags | |
| needs: [deploy] | |
| permissions: | |
| packages: write | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| matrix: | |
| component: [api, admin, db, public] | |
| steps: | |
| - uses: shrink/actions-docker-registry-tag@v5 | |
| with: | |
| registry: ghcr.io | |
| repository: ${{ github.repository }}/${{ matrix.component }} | |
| target: ${{ needs.deploy.outputs.tag }} | |
| tags: test |