bigquery_cleanup #548
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: bigquery_cleanup | |
on: | |
schedule: | |
- cron: "0 1 * * *" | |
workflow_dispatch: | |
jobs: | |
cleanup_stg: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: stg | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- name: 'Set up Cloud SDK' | |
uses: 'google-github-actions/setup-gcloud@v2' | |
- name: Save stg GCP credentials to runner | |
run: | | |
echo "${{ secrets.DBT_CICD_SA_SECRET_KEY_STG_BASE64_ENCODED }}" | base64 --decode >> ./service_account.json && \ | |
export GOOGLE_APPLICATION_CREDENTIALS="$(pwd)/service_account.json" | |
- name: Authenticate with GCP | |
run: | | |
gcloud auth activate-service-account [email protected] --key-file=./service_account.json && \ | |
gcloud config set project beyond-basics-stg | |
- name: Install python packages | |
run: pip install -r requirements.txt -r requirements_dev.txt | |
- run: python ./scripts/drop_unused_bq_resources.py --dataset_pattern "cicd_" --environment stg | |
cleanup_prd: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: prd | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- name: 'Set up Cloud SDK' | |
uses: 'google-github-actions/setup-gcloud@v2' | |
- name: Save prd GCP credentials to runner | |
run: | | |
echo "${{ secrets.DBT_CICD_SA_SECRET_KEY_PRD_BASE64_ENCODED }}" | base64 --decode >> ./service_account.json && \ | |
export GOOGLE_APPLICATION_CREDENTIALS="$(pwd)/service_account.json" | |
- name: Authenticate with GCP | |
run: | | |
gcloud auth activate-service-account [email protected] --key-file=./service_account.json && \ | |
gcloud config set project beyond-basics-prd | |
- name: Install python packages | |
run: pip install -r requirements.txt -r requirements_dev.txt | |
- run: python ./scripts/drop_unused_bq_resources.py --dataset_pattern "cicd_" --environment prd |