mirror of
https://github.com/FlipsideCrypto/arbitrum-models.git
synced 2026-02-06 11:06:55 +00:00
* models - streamline - core , decoder * delete bronze subfolders * models - docs, gh * silver - observablity, core, abis, prices, stats, nft transfers * gold - stats, price, core, nft transfers * sources * tests, dbt project, packages, makefile, python folder, slack notify yml * macros, and empty folders * remove base * update for fsc-evm changes - package, makefile, sources, dbt_project, workflows, docs * gold tags * silver bridge tags * dex tags * lending tags * nft tags * protocol tags * temp package * docs * wh * 48 --------- Co-authored-by: sam <sam@flipsidecrypto.com>
43 lines
983 B
YAML
43 lines
983 B
YAML
name: dbt_run_adhoc
|
|
run-name: ${{ inputs.dbt_command }}
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
branches:
|
|
- "main"
|
|
inputs:
|
|
target:
|
|
type: choice
|
|
description: DBT Run Environment
|
|
required: true
|
|
options:
|
|
- dev
|
|
- prod
|
|
default: dev
|
|
warehouse:
|
|
type: choice
|
|
description: Snowflake warehouse
|
|
required: true
|
|
options:
|
|
- DBT
|
|
- DBT_CLOUD
|
|
- DBT_EMERGENCY
|
|
- DBT_MEGA
|
|
default: DBT
|
|
dbt_command:
|
|
type: string
|
|
description: 'DBT Run Command'
|
|
required: true
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}
|
|
|
|
jobs:
|
|
called_workflow_template:
|
|
uses: FlipsideCrypto/fsc-evm/.github/workflows/dbt_run_template.yml@pre-release/v4-beta
|
|
with:
|
|
warehouse: ${{ inputs.warehouse }}
|
|
target: ${{ inputs.target }}
|
|
command_name: Run DBT Command
|
|
command: ${{ inputs.dbt_command }}
|
|
secrets: inherit |