-
Notifications
You must be signed in to change notification settings - Fork 3
56 lines (47 loc) · 1.92 KB
/
auto-stop-status-check.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
name: auto-stop-status-check
on:
workflow_dispatch:
schedule:
- cron: "30 20,23 * * *" # Every day at 20:30 and 23:30 BST
env:
GH_TOKEN: ${{ secrets.PLATFORM_USER_TOKEN }}
permissions:
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: '0'
token: ${{ env.GH_TOKEN }}
- name: "Az CLI login"
uses: azure/login@v2
with:
client-id: 2b6fa9d7-7dba-4600-a58a-5e25554997aa # DTS AKS Auto-Shutdown
tenant-id: 531ff96d-0ae9-462a-8d2d-bec7c0b42082 # HMCTS.NET
allow-no-subscriptions: true
- name: AKS STOP status check
run: ./scripts/aks/auto-shutdown-status.sh stop ${{ secrets.SHUTDOWN_NOTIFICATIONS_WEBHOOK }}
- name: Postgres Flexible STOP status check
run: ./scripts/flexible-server/flexserverstatus.sh stop ${{ secrets.SHUTDOWN_NOTIFICATIONS_WEBHOOK }}
- name: App Gateway STOP status check
run: ./scripts/appgateway/appgw_status.sh stop ${{ secrets.SHUTDOWN_NOTIFICATIONS_WEBHOOK }}
- name: SQL Managed Instance STOP status check
run: ./scripts/sqlmi/sqlmistatus.sh stop ${{ secrets.SHUTDOWN_NOTIFICATIONS_WEBHOOK }}
- name: SFTP STOP status check
run: ./scripts/blob-storage/sftp-check-status.sh stop ${{ secrets.SHUTDOWN_NOTIFICATIONS_WEBHOOK }}
- name: VM STOP status check
run: ./scripts/vm/vmstatus.sh deallocate ${{ secrets.SHUTDOWN_NOTIFICATIONS_WEBHOOK }}
- name: Output log file
run: ./scripts/common/log-output.sh
- name: Commit status update json files
continue-on-error: true
run: |
git config user.name hmcts-platform-operations
git config user.email [email protected]
git pull
git add ./status
git commit -m "Update json files stop status updates"
git push