mirror of
https://github.com/FlipsideCrypto/optimism-models.git
synced 2026-02-06 11:01:44 +00:00
* streamline bronze * silver models * gold tables * docs, gha * bronze folders * macros * make file, packages, project yml, delete tests * remove silver nft transfers ref * sources * macro tests * update for fsc-evm changes - package, makefile, sources, dbt_project, workflows, docs * gold tags * add ethereum models back in * silver bridge tags * dex tags * lending tags * nft tags * added back protocols folder and tagged * temp package * docs * docs * wh * observability exclusions * 48 * v51 * 52 * 53 --------- Co-authored-by: sam <sam@flipsidecrypto.com>
32 lines
790 B
YAML
32 lines
790 B
YAML
name: dbt_alter_gha_tasks
|
|
run-name: dbt_alter_gha_tasks
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
branches:
|
|
- "main"
|
|
inputs:
|
|
workflow_name:
|
|
type: string
|
|
description: Name of the workflow to perform the action on, no .yml extension
|
|
required: true
|
|
task_action:
|
|
type: choice
|
|
description: Action to perform
|
|
required: true
|
|
options:
|
|
- SUSPEND
|
|
- RESUME
|
|
default: SUSPEND
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}
|
|
|
|
jobs:
|
|
called_workflow_template:
|
|
uses: FlipsideCrypto/fsc-evm/.github/workflows/dbt_run_template_alter_gha_tasks.yml@pre-release/v4-beta
|
|
with:
|
|
workflow_name: ${{ inputs.workflow_name }}
|
|
task_action: ${{ inputs.task_action }}
|
|
target: prod
|
|
secrets: inherit |