29 lines
900 B
YAML
29 lines
900 B
YAML
# 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
|
|
- cron: "0 * * * *"
|
|
|
|
# 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:
|
|
NOTEBOOKS_TEST_RUNNER_CLIENT_ID: ${{ secrets.NOTEBOOKS_TEST_RUNNER_CLIENT_ID }}
|
|
NOTEBOOKS_TEST_RUNNER_CLIENT_SECRET: ${{ secrets.NOTEBOOKS_TEST_RUNNER_CLIENT_SECRET }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Use Node.js 14.x
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 14.x
|
|
- run: npm ci
|
|
- run: node utils/cleanupDBs.js
|