-
Notifications
You must be signed in to change notification settings - Fork 51
44 lines (36 loc) · 1.02 KB
/
delete-slot.yml
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: "Delete slot on staging site"
on:
pull_request:
types: [closed]
concurrency:
group: ci-${{ github.event.number }}
cancel-in-progress: true
env:
WEBAPP_NAME: antares-blog-staging
RESOURCE_GROUP: appserviceblogsite
SLOT_NAME: pr-${{ github.event.number }}
jobs:
delete-slot:
runs-on: ubuntu-latest
steps:
- name: Log into Azure CLI with service principal
uses: azure/login@v1
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
- name: Delete slot on staging site
run: |
az webapp deployment slot delete \
--resource-group $RESOURCE_GROUP \
--name $WEBAPP_NAME \
--slot $SLOT_NAME
delete-deployment:
runs-on: ubuntu-latest
permissions:
deployments: write
steps:
- name: Delete Deployment Environment
uses: strumwolf/delete-deployment-environment@v2.0.1
with:
environment: "PR #${{ github.event.number }}"
token: ${{ github.token }}
onlyRemoveDeployments: true