mirror of
https://github.com/FlipsideCrypto/base-models.git
synced 2026-02-06 11:01:45 +00:00
* temp changes for v4 * docs, disabled models and dummy receipts by hash models * removed unused vars * workflows * sources * removed comment for successful compile * package * test project vars * revert * clean up * update dbt project, workflows etc. * update tags for new naming conventions * blank model for overflow * makefile * makefile updates * misc updates for abis * temp source and array index * add scores job * sources update * refs * package * updates * package * package --------- Co-authored-by: Austin <austin@flipsidecrypto.com>
34 lines
809 B
YAML
34 lines
809 B
YAML
name: dbt_alter_gha_task
|
|
run-name: dbt_alter_gha_task
|
|
|
|
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_task.yml@pre-release/v4-beta
|
|
with:
|
|
workflow_name: |
|
|
${{ inputs.workflow_name }}
|
|
task_action: |
|
|
${{ inputs.task_action }}
|
|
target: prod
|
|
secrets: inherit |