remove unused gha

This commit is contained in:
shah 2025-03-05 16:22:57 -08:00
parent fdb3b04c85
commit 52e5a45053
3 changed files with 0 additions and 96 deletions

View File

@ -1,28 +0,0 @@
name: integration test
run-name: ${{ github.event.inputs.branch }}
on:
workflow_dispatch:
schedule:
# Runs “Daily at midnight GMT” (see https://crontab.guru)
- cron: '0 0 * * *'
concurrency: ${{ github.workflow }}
jobs:
test:
name: ${{ matrix.environment }}
uses: ./.github/workflows/dbt.yml
secrets: inherit
strategy:
fail-fast: false
matrix:
include:
- environment: hosted
warehouse: XSMALL
- environment: prod
warehouse: DBT_CLOUD
with:
warehouse: ${{ matrix.warehouse }}
environment: ${{ matrix.environment }}
command: dbt test -s test___utils_udf_introspect

View File

@ -1,19 +0,0 @@
name: dbt_run_dev_refresh
run-name: dbt_run_dev_refresh
on:
workflow_dispatch:
schedule:
# Runs "at 9:00 UTC" (see https://crontab.guru)
- cron: '0 9 * * *'
concurrency:
group: ${{ github.workflow }}
jobs:
dev_refresh:
uses: ./.github/workflows/dbt.yml
secrets: inherit
with:
environment: prod
command: dbt run-operation run_sp_create_prod_clone

View File

@ -1,49 +0,0 @@
name: test udfs
run-name: ${{ github.event.inputs.branch }}
on:
workflow_dispatch:
inputs:
environment:
type: choice
description: DBT Run Environment
required: true
options:
- dev
- prod
- hosted
default: dev
warehouse:
type: choice
description: Snowflake warehouse
required: true
options:
- DBT
- DBT_CLOUD
- XSMALL
default: DBT
schedule:
# Runs “Daily at midnight GMT” (see https://crontab.guru)
- cron: '0 0 * * *'
concurrency:
group: ${{ github.workflow }}
jobs:
scheduled:
uses: ./.github/workflows/dbt.yml
if: github.event_name == 'schedule' || github.event_name == 'push'
secrets: inherit
with:
warehouse: ${{ vars.WAREHOUSE }}
environment: prod
command: dbt test --selector test_udfs --threads 24
dispatched:
uses: ./.github/workflows/dbt.yml
if: github.event_name == 'workflow_dispatch'
secrets: inherit
with:
warehouse: ${{ inputs.warehouse }}
environment: ${{ inputs.environment }}
command: dbt test --selector test_udfs --threads 24