generated from CDCgov/template
-
Notifications
You must be signed in to change notification settings - Fork 3
63 lines (51 loc) · 1.69 KB
/
delete-pool-on-pr-close.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: Tear down Batch pool
on:
pull_request:
types:
- closed
branches:
- main
jobs:
delete-pool:
runs_on: cdc-cdcgov
name: Delete Batch pool
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Get commit message
id: commit-message
run: echo "message=$(git log -1 --pretty=%s HEAD)" >> $GITHUB_OUTPUT
# From: https://stackoverflow.com/a/58035262/2097171
- name: Extract branch name
shell: bash
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT
id: branch-name
- name: Figure out tag (either latest if it is main or the branch name)
id: image-tag
run: |
if [ "${{ steps.branch-name.outputs.branch }}" = "main" ]; then
echo "tag=latest" >> $GITHUB_OUTPUT
else
echo "tag=${{ steps.branch-name.outputs.branch }}" >> $GITHUB_OUTPUT
fi
- name: Install az CLI
run: |
apt-get update && apt-get install -y --no-install-recommends azure-cli
- name: Login to Azure with NNH Service Principal
id: azure_login_2
uses: azure/login@v2
with:
# managed by EDAV. Contact Amit Mantri or Jon Kislin if you have issues.
creds: ${{ secrets.EDAV_CFA_PREDICT_NNHT_SP }}
- name: Delete pool
id: delete_pool
run: |
az batch account login \
--resource-group {{ secrets.PRD_RESOURCE_GROUP }} \
--name "{{ env.BATCH_ACCOUNT }}"
az batch pool delete \
--pool-id "cfa-epinow2-${{ steps.image-tag.outputs.tag }}" \
# Don't prompt for user input
--yes