From c3c87c1b30afdad0e60526982d8abb714a356319 Mon Sep 17 00:00:00 2001 From: Ruge Li Date: Fri, 23 Feb 2024 15:22:56 -0800 Subject: [PATCH] workflow draft --- .github/workflows/cleanup-firebase.yml | 34 ++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/cleanup-firebase.yml diff --git a/.github/workflows/cleanup-firebase.yml b/.github/workflows/cleanup-firebase.yml new file mode 100644 index 000000000..93eb7b239 --- /dev/null +++ b/.github/workflows/cleanup-firebase.yml @@ -0,0 +1,34 @@ +name: Cleanup Firebase Metadata + +on: + schedule: + - cron: "24 18 * * 1" + +jobs: + cleanup: + runs-on: ${{ matrix.os }} + strategy: + matrix: + python-version: [3.9] + os: [ubuntu-latest, windows-latest, macOS-latest] + steps: + - uses: actions/checkout@v2 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install .[all] + - name: Configure AWS credentials + uses: aws-actions/configure-aws-credentials@v1 + with: + aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} + aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + aws-region: us-west-2 + - name: Cleanup Firebase Metadata + env: + STAGING_FIREBASE_TOKEN: ${{ secrets.STAGING_FIREBASE_TOKEN }} + STAGING_FIREBASE_EMAIL: ${{ secrets.STAGING_FIREBASE_EMAIL }} + run: #python scripts