Flow cleanup #285
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: Flow cleanup | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
flow_cleanup: | |
runs-on: ubicloud-standard-2-ubuntu-2204-arm | |
timeout-minutes: 60 | |
steps: | |
- name: checkout sources | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- uses: ubicloud/setup-go@35680fe0723d4a9309d4b1ac1c67e0d46eac5f24 # v5 | |
with: | |
go-version: '1.23.0' | |
cache-dependency-path: e2e_cleanup/go.sum | |
- name: download go modules | |
run: | | |
go mod download | |
working-directory: ./e2e_cleanup | |
- name: setup gcp service account | |
id: gcp-service-account | |
uses: jsdaniell/create-json@b8e77fa01397ca39cc4a6198cc29a3be5481afef # v1.2.3 | |
with: | |
name: "bq_service_account.json" | |
json: ${{ secrets.GCP_GH_CI_PKEY }} | |
- name: setup snowflake credentials | |
id: sf-credentials | |
uses: jsdaniell/create-json@b8e77fa01397ca39cc4a6198cc29a3be5481afef # v1.2.3 | |
with: | |
name: "snowflake_creds.json" | |
json: ${{ secrets.SNOWFLAKE_GH_CI_PKEY }} | |
- name: setup S3 credentials | |
id: s3-credentials | |
uses: jsdaniell/create-json@b8e77fa01397ca39cc4a6198cc29a3be5481afef # v1.2.3 | |
with: | |
name: "s3_creds.json" | |
json: ${{ secrets.S3_CREDS }} | |
- name: setup GCS credentials | |
id: gcs-credentials | |
uses: jsdaniell/create-json@b8e77fa01397ca39cc4a6198cc29a3be5481afef # v1.2.3 | |
with: | |
name: "gcs_creds.json" | |
json: ${{ secrets.GCS_CREDS }} | |
- name: run cleanup | |
run: go run main.go | |
working-directory: ./e2e_cleanup | |
env: | |
TEST_BQ_CREDS: ${{ github.workspace }}/bq_service_account.json | |
TEST_SF_CREDS: ${{ github.workspace }}/snowflake_creds.json |