changed the postgres variables to align local with the test environment, and same for the application.yml for the spring boot #333
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 Closed | |
on: | |
pull_request: | |
branches: [main] | |
types: [closed] | |
concurrency: | |
# PR open and close use the same group, allowing only one at a time | |
group: pr-${{ github.workflow }}-${{ github.event.number }} | |
cancel-in-progress: true | |
jobs: | |
# Clean up OpenShift when PR closed, no conditions | |
cleanup-openshift: | |
name: Cleanup OpenShift | |
if: '!github.event.pull_request.head.repo.fork' | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: redhat-actions/openshift-tools-installer@v1 | |
with: | |
oc: "4" | |
- name: Remove OpenShift artifacts | |
run: | | |
oc login --token=${{ secrets.OC_TOKEN }} --server=${{ vars.OC_SERVER }} | |
oc project ${{ vars.OC_NAMESPACE }} # Safeguard! | |
# Remove old build runs, build pods and deployment pods | |
oc delete all,pvc,secret,cm -l app=${{ github.event.repository.name }}-${{ github.event.number }} | |
# If merged into main, then handle any image promotions | |
image-promotions: | |
name: Image Promotions | |
if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'main' | |
runs-on: ubuntu-24.04 | |
strategy: | |
matrix: | |
package: [database, backend, frontend] | |
permissions: | |
packages: write | |
steps: | |
- uses: shrink/actions-docker-registry-tag@v4 | |
with: | |
registry: ghcr.io | |
repository: ${{ github.repository }}/${{ matrix.package }} | |
target: ${{ github.event.number }} | |
tags: test |