-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fddf4ba
commit d4ba1c6
Showing
3 changed files
with
6 additions
and
29 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,28 +2,23 @@ name: PR | |
|
||
on: | ||
pull_request: | ||
merge_group: | ||
|
||
concurrency: | ||
# Cancel in progress for PR open and close, but not merge_group | ||
group: ${{ github.workflow }}-${{ github.event.number || github.event.merge_group.base_sha }} | ||
# Cancel in progress for PR open and close | ||
group: ${{ github.workflow }}-${{ github.event.number }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
# PR only, skip for merge_group | ||
conventional-commits: | ||
name: Conventional Commits | ||
if: github.event_name == 'pull_request' | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: amannn/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
# PR only, skip for merge_group | ||
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 }} | ||
|
@@ -49,22 +44,9 @@ jobs: | |
After merge, new images are deployed in: | ||
- [Merge Workflow](https://github.com/${{ github.repository }}/actions/workflows/merge.yml) | ||
# Find initial PR number (for merge queues) | ||
vars: | ||
name: Set Variables | ||
outputs: | ||
pr: ${{ steps.pr.outputs.pr }} | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
# Get PR number for merge queues, otherwise use github.event.number | ||
- name: PR Number | ||
id: pr | ||
uses: bcgov-nr/[email protected] | ||
|
||
# https://github.com/bcgov-nr/action-builder-ghcr | ||
builds: | ||
name: Builds | ||
needs: [vars] | ||
runs-on: ubuntu-22.04 | ||
permissions: | ||
packages: write | ||
|
@@ -77,19 +59,19 @@ jobs: | |
with: | ||
keep_versions: 50 | ||
package: ${{ matrix.package }} | ||
tag: ${{ needs.vars.outputs.pr }} | ||
tag: ${{ github.event.number }} | ||
tag_fallback: latest | ||
triggers: ('${{ matrix.package }}/') | ||
|
||
# https://github.com/bcgov-nr/action-deployer-openshift | ||
deploys: | ||
name: Deploys | ||
needs: [builds, vars] | ||
needs: [builds] | ||
uses: ./.github/workflows/.deploy.yml | ||
secrets: inherit | ||
with: | ||
autoscaling: false | ||
directory: charts/quickstart-openshift | ||
tag: ${{ needs.vars.outputs.pr }} | ||
release: ${{ needs.vars.outputs.pr }} | ||
tag: ${{ github.event.number }} | ||
release: ${{ github.event.number }} | ||
triggers: ('backend/' 'frontend/' 'migrations/' 'charts/') |
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