This repository has been archived by the owner on Feb 1, 2024. It is now read-only.
fix(deps): update dependency vite to v5.0.12 [security] #17
Workflow file for this run
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: | |
concurrency: | |
# PR open and close use the same group, allowing only one at a time | |
group: ${{ github.workflow }}-${{ github.event.number }} | |
cancel-in-progress: true | |
jobs: | |
# Enforce conventional commits in PR titles | |
conventional-commits: | |
name: Conventional Commits | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: amannn/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
pr-description-add: | |
name: PR Description Add | |
env: | |
DOMAIN: apps.silver.devops.gov.bc.ca | |
PREFIX: ${{ github.event.repository.name }} | |
runs-on: ubuntu-22.04 | |
permissions: | |
pull-requests: write | |
timeout-minutes: 1 | |
steps: | |
- uses: bcgov-nr/[email protected] | |
with: | |
add_markdown: | | |
--- | |
Thanks for the PR! | |
Deployments, as required, will be available below: | |
- [Frontend](https://${{ env.PREFIX }}-${{ github.event.number }}-frontend.${{ env.DOMAIN }}) | |
- [Backend](https://${{ env.PREFIX }}-${{ github.event.number }}-frontend.${{ 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 deployed in: | |
- [Merge Workflow](https://github.com/${{ github.repository }}/actions/workflows/merge.yml) | |
# 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/[email protected] | |
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 | |
with: | |
autoscaling: false | |
tag: ${{ github.event.number }} | |
release: ${{ github.event.number }} | |
triggers: ('backend/' 'frontend/' 'migrations/' 'charts/') |