This commit is contained in:
yulike 2022-12-02 10:10:27 -05:00
parent 02f4065cee
commit fb8a202885
3 changed files with 0 additions and 59 deletions

View File

@ -1,22 +0,0 @@
name: Push File
on: push
jobs:
pull-request:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Create pull request
uses: dmnemec/copy_file_to_another_repo_action@main
env:
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
with:
source_file: 'TEST.md'
destination_repo: 'FlipsideCrypto/axelar-models'
destination_folder: '.gitub/workflows'
user_email: 'xiuyang@flipsidecrypto.com'
user_name: 'xiuy001'
commit_message: 'A custom message for the commit'

View File

@ -8,20 +8,6 @@ on:
description: 'dbt commands to run'
required: true
env:
DBT_PROFILES_DIR: ./
ACCOUNT: "${{ secrets.ACCOUNT }}"
ROLE: "${{ secrets.ROLE }}"
USER: "${{ secrets.USER }}"
PASSWORD: "${{ secrets.PASSWORD }}"
REGION: "${{ secrets.REGION }}"
DATABASE_DEV: "${{ secrets.DATABASE_DEV }}"
DATABASE_PROD: "${{ secrets.DATABASE_PROD }}"
WAREHOUSE_DEV: "${{ secrets.WAREHOUSE_DEV }}"
WAREHOUSE_PROD: "${{ secrets.WAREHOUSE_PROD }}"
SCHEMA: "${{ secrets.SCHEMA }}"
jobs:
run_dbt_jobs:
runs-on: ubuntu-latest

View File

@ -1,23 +0,0 @@
# This is a basic workflow that is manually triggered
name: Manual workflow
# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on:
workflow_dispatch:
inputs:
dbt_command:
type: string
description: 'DBT Run Command'
required: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ${{fromJson(inputs.dbt_command)}}
steps:
- name: Send greeting
run: echo "Hello ${{ matrix.node }}"