Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ci): unnecessary param, allow pr-open to skip fail on no db user #2236

Merged
merged 2 commits into from
Jan 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/.deployer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,11 @@ on:
type: string
oc_server:
default: https://api.silver.devops.gov.bc.ca:6443
description: 'OpenShift server'
description: OpenShift server
required: false
type: string
params:
description: 'Extra parameters to pass to helm upgrade'
default: ''
description: Extra parameters to pass to helm upgrade
required: false
type: string
tag:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ jobs:
--set global.autoscaling=true
--set frontend.pdb.enabled=true
--set backend.pdb.enabled=true
promote: prod
tag: ${{ inputs.tag }}

promote:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pr-close.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ jobs:
oc project ${{ secrets.oc_namespace }} # Safeguard!

- name: Remove PR user and database from crunchy
continue-on-error: true
shell: bash
run: |
# check if postgres-crunchy exists or else exit
Expand Down
Loading