cosmos-explorer/.github/workflows/cleanup.yml

40 lines
1.1 KiB
YAML
Raw Normal View History

2021-04-21 18:45:34 +01:00
# This is a basic workflow to help you get started with Actions
name: Cleanup End to End Account Resources
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
schedule:
# Once every hour
2021-05-28 15:16:36 +01:00
- cron: "0 15 * * *"
2021-04-21 18:45:34 +01:00
permissions:
id-token: write
contents: read
2021-04-21 18:45:34 +01:00
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
cleanupaccounts:
name: "Cleanup Test Database Accounts"
runs-on: ubuntu-latest
env:
AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
2021-04-21 18:45:34 +01:00
steps:
- uses: actions/checkout@v2
- name: "Az CLI login"
uses: azure/login@v1
with:
client-id: ${{ secrets.AZURE_CLIENT_ID }}
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
- name: Use Node.js 18.x
2021-04-21 18:45:34 +01:00
uses: actions/setup-node@v1
with:
node-version: 18.x
2021-04-21 18:45:34 +01:00
- run: npm ci
- run: node utils/cleanupDBs.js