-
Notifications
You must be signed in to change notification settings - Fork 51
44 lines (41 loc) · 1.33 KB
/
on_pr_closed.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Uninstall PR instance
on:
pull_request:
branches:
- main
paths:
- 'plugins/**'
- 'services/tenant-ui/**'
- 'charts/traction/**'
- 'charts/tenant-ui/**'
types:
- closed
jobs:
uninstall:
name: Uninstall PR
environment: development
runs-on: ubuntu-20.04
if: github.repository_owner == 'bcgov'
steps:
- uses: actions/checkout@v2
- name: Check out manifest repo
uses: actions/checkout@v2
with:
ssh-key: ${{ secrets.MANIFEST_REPO_DEPLOY_KEY }}
repository: ${{ secrets.MANIFEST_REPO }}
path: charts-repo
- name: Authenticate and set context
uses: redhat-actions/oc-login@v1
with:
openshift_server_url: ${{ secrets.OPENSHIFT_SERVER }}
openshift_token: ${{ secrets.OPENSHIFT_TOKEN }}
certificate_authority_data: ${{ secrets.OPENSHIFT_CA_CRT }}
namespace: ${{ secrets.OPENSHIFT_NAMESPACE }}
- name: Uninstall Traction via Helm
continue-on-error: true
run: |
helm uninstall pr-${{ github.event.number }}-traction
- name: Remove Traction Openshift Objects
continue-on-error: true
run: |
oc delete secret,pvc --selector "app.kubernetes.io/instance"=pr-${{ github.event.number }}-traction