AP-5415: Add url to content security policy so images will display #3593
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: Delete UAT release | |
on: | |
pull_request: | |
types: | |
- closed | |
jobs: | |
delete_uat_job: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Delete UAT release action | |
id: delete_uat | |
uses: ministryofjustice/[email protected] | |
with: | |
release_name_prefix: "apply-" | |
delete_all_pvc: true | |
k8s_cluster: ${{ secrets.K8S_GHA_UAT_CLUSTER_NAME }} | |
k8s_cluster_cert: ${{ secrets.K8S_GHA_UAT_CLUSTER_CERT }} | |
k8s_namespace: ${{ secrets.K8S_GHA_UAT_NAMESPACE }} | |
k8s_token: ${{ secrets.K8S_GHA_UAT_TOKEN }} | |
- name: Result | |
shell: bash | |
run: echo ${{ steps.delete_uat.outputs.delete-message }} |