Skip to content

Commit

Permalink
fix(ci): update to common pr-cleanup job (#704)
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts authored Oct 23, 2024
1 parent a5b1454 commit d4ea0cf
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 49 deletions.
59 changes: 11 additions & 48 deletions .github/workflows/pr-close.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,54 +6,17 @@ on:
- closed

concurrency:
group: pr-${{ github.ref }}
group: ${{ github.event.number }}
cancel-in-progress: true

jobs:
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
# Tag images for promotion on GitHub Container Registry (ghcr.io)
image-promotions:
name: Tag images
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: [api, admin, db, public]
steps:
- uses: shrink/actions-docker-registry-tag@v4
with:
registry: ghcr.io
repository: ${{ github.repository }}/${{ matrix.package }}
target: ${{ env.ZONE }}
tags: test

cleanup-openshift:
name: Cleanup OpenShift
runs-on: ubuntu-22.04
needs: setup
env:
NAME: fom
ZONE: ${{ needs.setup.outputs.zone }}
steps:
- uses: actions/checkout@v4
- 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,cm -l app=${{ env.NAME }}-${{ env.ZONE }}
cleanup:
name: Cleanup and Images
uses: bcgov/quickstart-openshift-helpers/.github/workflows/[email protected]
secrets:
oc_namespace: ${{ vars.OC_NAMESPACE }}
oc_token: ${{ secrets.OC_TOKEN }}
with:
cleanup: label
packages: api public admin db
cleanup_name: fom
2 changes: 1 addition & 1 deletion .github/workflows/pr-open.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
workflow_dispatch:

concurrency:
group: pr-${{ github.ref }}
group: ${{ github.event.number }}
cancel-in-progress: true

jobs:
Expand Down

0 comments on commit d4ea0cf

Please sign in to comment.