chore(deps): pin cosmtrek/air docker tag to 5e8c6ed - autoclosed #270
Workflow file for this run
This file contains hidden or 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: | |
| cleanup: | |
| name: Cleanup OpenShift and/or Promote Images | |
| uses: bcgov/quickstart-openshift-helpers/.github/workflows/.pr-close.yml@v0.9.0 | |
| secrets: | |
| oc_namespace: ${{ vars.OC_NAMESPACE }} | |
| oc_token: ${{ secrets.OC_TOKEN }} | |
| with: | |
| cleanup: helm | |
| packages: backend-go backend-java backend-py migrations-go migrations-py | |
| cleanup_db: # TODO move it off to another action later. | |
| name: Remove DB User from Crunchy | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: bcgov/action-crunchy@v1.1.0 | |
| name: Remove PR Specific User | |
| with: | |
| oc_namespace: ${{ vars.oc_namespace }} | |
| oc_token: ${{ secrets.oc_token }} | |
| oc_server: ${{ vars.oc_server }} | |
| values_file: charts/crunchy/values.yml |