Orv2 4103 fe add return trip to stos #8738
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: PR Opened | |
| on: | |
| pull_request: | |
| merge_group: | |
| concurrency: | |
| # Cancel in progress for PR open and close, but not merge_group | |
| group: ${{ github.event.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| pr-description-add: | |
| name: PR Description Add | |
| if: github.event_name == 'pull_request' | |
| env: | |
| DOMAIN: apps.silver.devops.gov.bc.ca | |
| PREFIX: ${{ github.event.repository.name }}-${{ github.event.number }} | |
| runs-on: ubuntu-22.04 | |
| permissions: | |
| pull-requests: write | |
| timeout-minutes: 1 | |
| steps: | |
| - uses: bcgov/action-pr-description-add@v1.1.2 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| add_markdown: | | |
| --- | |
| Thanks for the PR! | |
| Deployments, as required, will be available below: | |
| - [Frontend](https://${{ env.PREFIX }}-frontend.${{ env.DOMAIN }}) | |
| - [Vehicles](https://${{ env.PREFIX }}-vehicles.${{ env.DOMAIN }}/api) | |
| - [Dops](https://${{ env.PREFIX }}-dops.${{ env.DOMAIN }}/api) | |
| - [Policy](https://${{ env.PREFIX }}-policy.${{ env.DOMAIN }}/api) | |
| - [Scheduler](https://${{ env.PREFIX }}-scheduler.${{ env.DOMAIN }}/api) | |
| - [Public](https://${{ env.PREFIX }}-public.${{ env.DOMAIN }}/api) | |
| Please create PRs in draft mode. Mark as ready to enable: | |
| - [Analysis Workflow](https://github.com/${{ github.repository }}/actions/workflows/analysis.yml) | |
| After merge, new images are promoted to: | |
| - [Merge Workflow](https://github.com/${{ github.repository }}/actions/workflows/merge.yml) | |
| # Get PR number for merge queues, otherwise jusr use github.event.nuber | |
| vars: | |
| name: Set Variables | |
| outputs: | |
| pr: ${{ steps.pr.outputs.pr }} | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: PR Number | |
| id: pr | |
| uses: bcgov/action-get-pr@v0.0.1 | |
| # https://github.com/bcgov/action-builder-ghcr | |
| builds: | |
| name: Builds | |
| needs: [vars] | |
| runs-on: ubuntu-22.04 | |
| permissions: | |
| packages: write | |
| strategy: | |
| matrix: | |
| package: [dops, vehicles, frontend, scheduler, policy, public] | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: bcgov/action-builder-ghcr@v2.2.0 | |
| with: | |
| #keep_versions: 50 | |
| package: ${{ matrix.package }} | |
| tag: ${{ needs.vars.outputs.pr }} | |
| tag_fallback: latest | |
| triggers: '${{ matrix.package }}/' #omit to build everything | |
| # https://github.com/bcgov/action-deployer-openshift | |
| deploys-silver-dev: | |
| name: Deploys (Silver Dev) | |
| needs: [builds, vars] | |
| uses: ./.github/workflows/silver-dev.yml | |
| secrets: inherit | |
| with: | |
| tag: ${{ needs.vars.outputs.pr }} | |
| params: | | |
| --set-string global.env.pr_num='${{ needs.vars.outputs.pr }}' \ | |
| --set-string global.env.release_num='${{ needs.vars.outputs.pr }}' \ | |
| deploys-gold-dev: | |
| name: Deploys (Gold Dev) | |
| needs: [builds, vars] | |
| uses: ./.github/workflows/gold-dev.yml | |
| secrets: inherit | |
| with: | |
| tag: ${{ needs.vars.outputs.pr }} | |
| params: | | |
| --set-string global.env.pr_num='${{ needs.vars.outputs.pr }}' \ | |
| --set-string global.env.release_num='${{ needs.vars.outputs.pr }}' \ |