Skip to content

chore(deps): update all non-major dependencies #143

chore(deps): update all non-major dependencies

chore(deps): update all non-major dependencies #143

Workflow file for this run

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:
init:
name: Initialize
if: "!github.event.pull_request.head.repo.fork"
outputs:
tag: ${{ steps.tag.outputs.tag }}
runs-on: ubuntu-22.04
permissions:
pull-requests: write
steps:
- name: Get PR Number Mod 50
id: tag
run: echo "tag=$(( ${{ github.event.number }} % 50 ))" >> $GITHUB_OUTPUT
# Clean up OpenShift when PR closed, no conditions
cleanup-openshift:
name: Cleanup OpenShift
needs: [init]
if: '!github.event.pull_request.head.repo.fork'
runs-on: ubuntu-22.04
steps:
- name: Remove OpenShift artifacts
run: |
oc login --token=${{ secrets.OC_TOKEN }} --server=${{ vars.OC_SERVER }}
oc project ${{ vars.OC_NAMESPACE }}
# Remove old build runs, build pods and deployment pods
oc delete all,pvc,secret -l app=${{ github.event.repository.name }}-${{ needs.init.outputs.tag }}
# If merged into main, then handle any image promotions
image-promotions:
name: Image Promotions
needs: [init]
if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'main'
runs-on: ubuntu-22.04
strategy:
matrix:
package: [database, backend, frontend]
permissions:
packages: write
steps:
- uses: shrink/actions-docker-registry-tag@v3
with:
registry: ghcr.io
repository: ${{ github.repository }}/${{ matrix.package }}
target: ${{ needs.init.outputs.tag }}
tags: test