fix(deps): update dependency sass to v1.70.0 #423
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: | |
types: | |
- closed | |
concurrency: | |
# PR open and close use the same group, allowing only one at a time | |
group: pr-${{ github.event.number }} | |
cancel-in-progress: true | |
jobs: | |
# This job is needed for FAM | |
setup: | |
name: Reset the deployment number | |
runs-on: ubuntu-22.04 | |
outputs: | |
zone: ${{ steps.calculate.outputs.zone }} | |
steps: | |
- name: Calculate the deployment number | |
id: calculate | |
run: | | |
echo "zone=$((${{ github.event.number }} % 50))" >> $GITHUB_OUTPUT | |
# Clean up OpenShift when PR closed, no conditions | |
cleanup-openshift: | |
name: Cleanup OpenShift | |
runs-on: ubuntu-22.04 | |
needs: setup | |
env: | |
ZONE: ${{ needs.setup.outputs.zone }} | |
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,cm,pvc,secret -l app=${{ github.event.repository.name }}-${{ env.ZONE }} | |
# 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-22.04 | |
needs: setup | |
env: | |
ZONE: ${{ needs.setup.outputs.zone }} | |
strategy: | |
matrix: | |
package: [database, backend, frontend, oracle-api] | |
steps: | |
- uses: shrink/actions-docker-registry-tag@v3 | |
with: | |
registry: ghcr.io | |
repository: ${{ github.repository }}/${{ matrix.package }} | |
target: ${{ env.ZONE }} | |
tags: test |